-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (45 loc) · 1.54 KB
/
Copy pathCargo.toml
File metadata and controls
51 lines (45 loc) · 1.54 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
[workspace]
members = [ "crates/taurus-core", "crates/taurus-macros", "crates/taurus-manual", "crates/taurus", "crates/taurus-tests", "crates/taurus-provider", "crates/taurus-bench"]
resolver = "3"
[workspace.package]
version = "0.1.0"
edition = "2024"
[workspace.dependencies]
async-trait = "0.1.89"
code0-flow = { version = "0.0.45" }
tucana = { version = "0.0.82" }
tokio = { version = "1.44.1", features = ["rt-multi-thread", "signal"] }
log = "0.4.27"
opentelemetry = { version = "0.32.0", features = ["metrics"] }
lupus = "0.0.5"
futures-lite = "2.6.0"
rand = "0.10.0"
base64 = "0.23.0"
env_logger = "0.11.8"
async-nats = "0.50.0"
prost = "0.14.1"
tonic-health = "0.14.1"
tonic = "0.14.1"
serde_json = "1.0.149"
serde = "1.0.228"
uuid = { version = "1.23.0", features = ["v4"] }
ureq = "3.0.0"
chrono = { version = "0.4.42", default-features = false, features = ["std", "clock"] }
inventory = "0.3.24"
lru = "0.18.2"
syn = { version = "3", features = ["full", "extra-traits"] }
quote = "1"
proc-macro2 = "1"
jsonwebtoken = { version = "11.0.0", features = ["rust_crypto"] }
[workspace.dependencies.taurus-core]
path = "./crates/taurus-core"
[workspace.dependencies.taurus-provider]
path = "./crates/taurus-provider"
[workspace.dependencies.taurus-macros]
path = "./crates/taurus-macros"
# `cargo build --profile profiling` — a release build with debug symbols,
# for flamegraph/sampling work. Kept separate from [profile.release] so
# ordinary release builds stay free of the extra symbol/binary-size cost.
[profile.profiling]
inherits = "release"
debug = true