dependabot[bot]
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
21 additions and
3 deletions
-
Cargo.lock
-
acmed/Cargo.toml
|
|
@ -13,7 +13,7 @@ dependencies = [ |
|
|
|
"log", |
|
|
|
"minijinja", |
|
|
|
"native-tls", |
|
|
|
"nix", |
|
|
|
"nix 0.27.1", |
|
|
|
"openssl", |
|
|
|
"openssl-sys", |
|
|
|
"punycode", |
|
|
@ -36,7 +36,7 @@ dependencies = [ |
|
|
|
"glob", |
|
|
|
"log", |
|
|
|
"minijinja", |
|
|
|
"nix", |
|
|
|
"nix 0.28.0", |
|
|
|
"nom", |
|
|
|
"rand", |
|
|
|
"reqwest", |
|
|
@ -315,6 +315,12 @@ version = "1.0.0" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "cfg_aliases" |
|
|
|
version = "0.1.1" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "clap" |
|
|
|
version = "4.5.0" |
|
|
@ -939,6 +945,18 @@ dependencies = [ |
|
|
|
"libc", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "nix" |
|
|
|
version = "0.28.0" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" |
|
|
|
dependencies = [ |
|
|
|
"bitflags 2.4.2", |
|
|
|
"cfg-if", |
|
|
|
"cfg_aliases", |
|
|
|
"libc", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "nom" |
|
|
|
version = "7.1.3" |
|
|
|
|
|
@ -39,7 +39,7 @@ reqwest = "0.11.16" |
|
|
|
minijinja = "1.0.3" |
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies] |
|
|
|
nix = { version = "0.27", features = ["fs", "user"] } |
|
|
|
nix = { version = "0.28", features = ["fs", "user"] } |
|
|
|
|
|
|
|
[build-dependencies] |
|
|
|
serde = { version = "1.0", features = ["derive"] } |
|
|
|