-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 903 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 903 Bytes
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
[package]
name = "propeller"
version = "0.0.0"
edition = "2021"
[dependencies]
clap = { version = "4.6.1", features = ["derive"] }
env_logger = "0.11.10"
log = "0.4.29"
postgres = "0.19.13"
rand = "0.10.1"
serde = { version = "1.0.228", features = ["derive"] }
reqwest = { version = "0.13.3", features = ["json"] }
serde_json = "1.0.149"
serde_yaml = "0.9.34+deprecated"
tokio = { version = "1.50.0", features = ["rt"] }
urlencoding = "2.1.3"
vaultrs = { version = "0.8.0", default-features = false, features = [ "native-tls" ] }
[dev-dependencies]
assert_cmd = "2.2.1"
ntest = "0.9.5"
predicates = "3.1.4"
schemars = "1.2.1"
testcontainers-modules = { version = "0.14.0", features = ["hashicorp_vault", "k3s", "postgres"] }
tokio = { version = "1.50.0", features = ["macros", "rt-multi-thread"] }
tokio-postgres = "0.7.17"
utilities = {path= "tests/utilities" }
[build-dependencies]
cross = "0.2.5"