-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Make cert-manager a sub-crate * Update rcgen
- Loading branch information
1 parent
f6192ba
commit b900f5c
Showing
14 changed files
with
37 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
[package] | ||
name = "cert-manager" | ||
version = "0.0.11" # https://crates.io/crates/cert-manager | ||
|
||
edition = "2021" | ||
rust-version = "1.69" | ||
publish = true | ||
description = "Cert manager in Rust" | ||
# copied-from: | ||
repository = "https://github.com/gyuho/cert-manager" | ||
readme = "README.md" | ||
license = "Apache-2.0" | ||
|
||
[dependencies] | ||
log = "0.4.20" | ||
rand = "0.8.5" | ||
random-manager = "0.0.5" # https://crates.io/crates/random-manager/versions | ||
rcgen = { version = "0.12.1", features = ["pem", "x509-parser"] } | ||
rsa = { version = "0.9.2", features = ["pem"] } # https://crates.io/crates/rsa | ||
rustls = "0.21.8" | ||
rustls-pemfile = "1.0.3" | ||
x509-parser = "0.15.1" | ||
|
||
[dev-dependencies] | ||
env_logger = "0.10.0" | ||
tempfile = "3.5.0" | ||
|
||
[package.metadata.cargo-udeps.ignore] | ||
normal = ["rsa"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pub mod x509; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
//! A library for building p2p inbound and outbound connections. | ||
pub mod cert_manager; | ||
pub mod peer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters