forked from temporalio/sdk-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (37 loc) · 700 Bytes
/
Cargo.toml
File metadata and controls
42 lines (37 loc) · 700 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
32
33
34
35
36
37
38
39
40
41
42
[workspace]
members = [
"core",
"client",
"core-api",
"fsm",
"sdk-core-protos",
"sdk",
"core-c-bridge",
]
resolver = "2"
[workspace.package]
license = "MIT"
license-file = "LICENSE.txt"
[workspace.dependencies]
derive_builder = "0.20"
derive_more = { version = "2.0", features = [
"constructor",
"display",
"from",
"into",
"debug",
"try_into",
] }
thiserror = "2"
tonic = "0.13"
tonic-build = "0.13"
opentelemetry = { version = "0.30", features = ["metrics"] }
prost = "0.13"
prost-types = "0.13"
[workspace.lints.rust]
unreachable_pub = "warn"
[workspace.lints.clippy]
dbg_macro = "warn"
[profile.release-lto]
inherits = "release"
lto = true