Skip to content

Commit d9cd65b

Browse files
committed
ACME: define API object types.
1 parent 6af1f0c commit d9cd65b

File tree

6 files changed

+610
-2
lines changed

6 files changed

+610
-2
lines changed

Cargo.lock

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ futures-channel = "0.3.31"
1717
http = "1.3.1"
1818
http-body = "1.0.1"
1919
http-body-util = "0.1.3"
20+
http-serde = "2.1.1"
2021
hyper = { version = "1.6.0", features = ["client", "http1"] }
2122
libc = "0.2.174"
2223
openssl = { version = "0.10.73", features = ["bindgen"] }
@@ -36,7 +37,7 @@ rev = "95424ad7143de25124d9bedcbf9241fd72a24705"
3637
git = "https://github.com/nginx/ngx-rust"
3738
rev = "95424ad7143de25124d9bedcbf9241fd72a24705"
3839
default-features = false
39-
features = ["async", "std"]
40+
features = ["async", "serde", "std"]
4041

4142
[features]
4243
default = ["export-modules"]

src/acme.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// Copyright (c) F5, Inc.
2+
//
3+
// This source code is licensed under the Apache License, Version 2.0 license found in the
4+
// LICENSE file in the root directory of this source tree.
5+
6+
pub mod types;

0 commit comments

Comments
 (0)