-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (29 loc) · 932 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "propeller"
version = "0.0.0"
edition = "2021"
[dependencies]
clap = { version = "4.5.23", features = ["derive"] }
env_logger = "0.11.5"
lazy_static = "1.5.0"
log = "0.4.22"
postgres = "0.19.9"
rand = "0.9.0-beta.0"
serde = { version = "1.0.216", features = ["derive"] }
reqwest = { version = "0.12.9", features = ["json"] }
serde_json = "1.0.133"
serde_yaml = "0.9.34+deprecated"
tokio = { version = "1.42.0", features = ["rt"] }
urlencoding = "2.1.3"
vaultrs = { version = "0.7.3", default-features = false, features = [ "native-tls" ] }
[dev-dependencies]
assert_cmd = "2.0.16"
ntest = "0.9.3"
predicates = "3.1.2"
schemars = "0.8.21"
testcontainers-modules = { version = "0.11.4", features = ["hashicorp_vault", "k3s", "postgres"] }
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] }
tokio-postgres = "0.7.12"
utilities = {path= "tests/utilities" }
[build-dependencies]
cross = "0.2.5"