-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (48 loc) · 1.11 KB
/
Cargo.toml
File metadata and controls
59 lines (48 loc) · 1.11 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
[workspace]
resolver = "2"
members = [
"crates/lagrange-core",
"crates/lagrange-core-runner",
"crates/lagrange-macros",
"crates/lagrange-proto",
"crates/lagrange-proto-derive",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = []
license = "MIT OR Apache-2.0"
repository = "https://github.com/yourusername/lagrange-rs"
[workspace.dependencies]
# Async runtime
tokio = { version = "1.42", features = ["full"] }
async-trait = "0.1"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11"
bytes = "1.9"
# Concurrency
dashmap = "6.1"
# Error handling
thiserror = "2.0"
anyhow = "1.0"
# Macros
linkme = "0.3"
syn = { version = "2.0", features = ["full"] }
quote = "1.0"
proc-macro2 = "1.0"
# Logging
tracing = "0.1"
# Time
chrono = { version = "0.4", features = ["serde"] }
# Random
rand = "0.8"
# Internal dependencies
lagrange-macros = { path = "crates/lagrange-macros" }
lagrange-proto = { path = "crates/lagrange-proto" }
lagrange-proto-derive = { path = "crates/lagrange-proto-derive" }
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true