-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (32 loc) · 834 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
33
34
35
36
37
[workspace]
resolver = "2"
members = ["gin", "derive", "core"]
[workspace.dependencies]
bytes = "1.6.0"
darling = "0.20.9"
gin-tonic = "0.5.3"
gin-tonic-core = "0.5.3"
gin-tonic-derive = "0.5.3"
heck = "0.5.0"
proc-macro2 = "1.0.85"
prost = "0.13.1"
protox = "0.7.0"
quote = "1.0.36"
syn = { version = "2.0.66", features = ["full"] }
thiserror = "1.0.61"
tonic = { version = "0.12.0", default-features = false, features = ["codegen"] }
tonic-build = "0.12.0"
tracing = "0.1.40"
uuid = { version = "1.10.0", features = ["v4"] }
[workspace.lints.rust]
[workspace.lints.clippy]
unwrap_used = "deny"
cast_possible_truncation = "warn"
[patch.crates-io]
gin-tonic = { path = "gin" }
gin-tonic-core = { path = "core" }
gin-tonic-derive = { path = "derive" }
[profile.release-with-debug]
inherits = "release"
debug = true
strip = "none"