-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
65 lines (59 loc) · 1.53 KB
/
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
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
[workspace]
members = ["crown", "apps/choo", "apps/http-app", "apps/test-app"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
[workspace.dependencies]
sword = { git = "https://github.com/zorp-corp/sword.git", rev = "bcb2e7fba0e24d45d4887fae77389d7c5e86b507" }
sword_macros = { git = "https://github.com/zorp-corp/sword.git", rev = "bcb2e7fba0e24d45d4887fae77389d7c5e86b507" }
assert_no_alloc = { git = "https://github.com/zorp-corp/sword.git", rev = "bcb2e7fba0e24d45d4887fae77389d7c5e86b507" }
# Uncomment for local dev of sword and comment out above
# assert_no_alloc.path = "../sword/rust/assert_no_alloc"
# sword.path = "../sword/rust/sword"
# sword_macros.path = "../sword/rust/sword_macros"
# External dependencies
anyhow = "1.0"
async-trait = "0.1"
axum = "0.7.5"
bincode = "2.0.0-rc.3"
bitvec = "1.0.1"
blake3 = { version = "1.5.1", features = ["serde"] }
byteorder = "1.5.0"
bytes = "1.5.0"
clap = "4.4.4"
either = "1.9.0"
futures = "0.3.31"
getrandom = "0.2.11"
intmap = "2.0.0"
rand = "0.8.5"
samply = "0.11.0"
serde = "1.0.195"
tempfile = "3.3"
termimad = "0.31.0"
tracing-test = "0.2.5"
thiserror = "1.0"
tokio = { version = "1.32", features = [
"rt",
"rt-multi-thread",
"net",
"macros",
"io-util",
"fs",
"signal",
] }
tokio-util = "0.7.12"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = [
"ansi",
"env-filter",
"registry",
] }
yaque = "0.6.6"
[profile.dev.package."*"]
opt-level = 3
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
debug = 1