-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
96 lines (89 loc) · 2.95 KB
/
Cargo.toml
File metadata and controls
96 lines (89 loc) · 2.95 KB
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
88
89
90
91
92
93
94
95
96
[workspace]
resolver = "3"
members = [
"crates/auths",
"crates/auths-core",
"crates/auths-cli",
"crates/auths-id",
"crates/auths-index",
"crates/auths-policy",
"crates/auths-verifier",
"crates/auths-telemetry",
"crates/auths-crypto",
"crates/auths-sdk",
"crates/auths-infra-git",
"crates/auths-infra-http",
"crates/auths-infra-rekor",
"crates/auths-storage",
"crates/auths-transparency",
"crates/auths-keri",
"crates/auths-jwt",
"crates/auths-mcp-server",
"crates/auths-pairing-daemon",
"crates/auths-pairing-protocol",
"crates/auths-radicle",
"crates/auths-scim",
"crates/auths-utils",
"crates/auths-oidc-port",
"crates/xtask", "crates/auths-api",
]
[workspace.package]
version = "0.0.1-rc.12"
license = "Apache-2.0"
rust-version = "1.93"
repository = "https://github.com/auths-dev/auths"
homepage = "https://github.com/auths-dev/auths"
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
bs58 = "0.5.1"
ring = "0.17.14"
base64 = "0.22.1"
thiserror = "2"
uuid = { version = "1", features = ["v4"] }
git2 = { version = "0.20.4", default-features = false, features = ["vendored-libgit2"] }
glob = "0.3"
parking_lot = "0.12"
schemars = "0.8"
subtle = "2.6"
zeroize = { version = "1.8.1", features = ["serde", "derive"] }
# Exact pin: canonicalization changes silently break all existing attestation signatures.
json-canon = "=0.1.3"
auths-core = { path = "crates/auths-core" }
auths-keri = { path = "crates/auths-keri" }
auths-id = { path = "crates/auths-id" }
auths-verifier = { path = "crates/auths-verifier", default-features = false }
auths-policy = { path = "crates/auths-policy" }
auths-index = { path = "crates/auths-index" }
auths-telemetry = { path = "crates/auths-telemetry" }
auths-crypto = { path = "crates/auths-crypto", default-features = false }
auths-sdk = { path = "crates/auths-sdk" }
auths-infra-git = { path = "crates/auths-infra-git" }
auths-infra-http = { path = "crates/auths-infra-http" }
auths-jwt = { path = "crates/auths-jwt" }
auths-pairing-daemon = { path = "crates/auths-pairing-daemon" }
auths-pairing-protocol = { path = "crates/auths-pairing-protocol" }
auths-storage = { path = "crates/auths-storage" }
auths-transparency = { path = "crates/auths-transparency", default-features = false }
auths-utils = { path = "crates/auths-utils" }
insta = { version = "1", features = ["json"] }
# Compile crypto-heavy crates with optimizations even in dev/test builds.
# Without this, Argon2id key derivation (m=64 MiB, t=3) takes ~5-10s per
# call in unoptimized builds, causing E2E test timeouts on CI runners.
[profile.dev.package.argon2]
opt-level = 3
[profile.dev.package.chacha20poly1305]
opt-level = 3
[profile.dev.package.aes-gcm]
opt-level = 3
[profile.dev.package.ring]
opt-level = 3
[workspace.lints.clippy]
unwrap_used = "deny"
expect_used = "deny"
print_stdout = "deny"
print_stderr = "deny"
exit = "deny"
dbg_macro = "deny"
disallowed_methods = "deny"
[workspace.lints.rustdoc]
broken_intra_doc_links = "deny"