-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
87 lines (82 loc) · 2.08 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
version = "0.0.6"
edition = "2021"
authors = ["John Choi <[email protected]>", "Boris Im <[email protected]>"]
repository = "https://github.com/cremithq/nebula"
keywords = ["secret", "vault"]
categories = ["security"]
[profile.release]
strip = true
opt-level = "z"
codegen-units = 1
lto = true
[profile.dev]
strip = "debuginfo"
[profile.dev.package."*"]
opt-level = 0
[workspace.dependencies]
rand = "0.8"
anyhow = "1.0"
async-trait = "0.1"
tokio = "1.40"
tracing = "0.1"
tracing-subscriber = { version = "0.3.18", features = ["json"] }
serde = "1.0"
serde_json = "1.0"
thiserror = "1.0"
zeroize = { version = "1.8.1", features = ["serde", "zeroize_derive"] }
sea-orm = { version = "1.1", features = [
"runtime-tokio-native-tls",
"sqlx-postgres",
] }
aws-config = "1.5.8"
aws-credential-types = "1.2.1"
aws-sigv4 = "1.2.4"
ulid = "1.1.3"
url = "2.5.2"
urlencoding = "2.1.3"
chrono = { version = "0.4.38" }
aes-gcm = "0.10"
lazy_static = "1.5"
once_cell = "1.20"
mockall = "0.13.0"
rstest = "0.23.0"
regex = "1.1.0"
rmp-serde = "1.3"
reqwest = "0.12.8"
base64 = "0.22"
sqlx = "0.8"
bon = "3.3"
directories = "5.0"
validator = { version = "0.19", features = ["derive"] }
openssl = "0.10"
sha3 = "0.10"
pin-project = "1"
futures-util = "0.3"
axum_thiserror = "0.1"
axum = "0.7"
tower = "0.5"
tower-http = "0.6"
config = "0.14.0"
clap = { version = "4.5.19", features = ["cargo", "derive"] }
sea-orm-migration = { version = "1.1.1", features = [
"runtime-tokio-native-tls",
] }
cached = { version = "0.54", features = [
"async",
"async_tokio_rt_multi_thread",
] }
pest = "2.7.10"
pest_derive = "2.7.10"
# nebula crates
nebula-miracl = { path = "crates/nebula-miracl" }
nebula-policy = { path = "crates/nebula-policy" }
nebula-abe = { path = "crates/nebula-abe" }
nebula-storage = { path = "crates/nebula-storage" }
nebula-secret-sharing = { path = "crates/nebula-secret-sharing" }
nebula-token = { path = "crates/nebula-token" }
nebula-config-path = { path = "crates/nebula-config-path" }
nebula-domain = { path = "crates/nebula-domain" }