-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
83 lines (75 loc) · 2.21 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[workspace]
members = ["archer-http", "archer-proto", "tracing-archer"]
[workspace.package]
version = "0.1.0"
authors = ["Dominik Nakamura <[email protected]>"]
edition = "2021"
license = "AGPL-3.0-only"
[workspace.dependencies]
anyhow = "1.0.93"
once_cell = "1.20.2"
quinn = { version = "0.11.6", default-features = false, features = ["runtime-tokio", "rustls"] }
rand = "0.8.5"
rustls-pemfile = "2.2.0"
serde = { version = "1.0.215", features = ["derive"] }
snap = "1.1.1"
thiserror = "2.0.3"
time = { version = "0.3.36", features = ["serde"] }
tokio = { version = "1.41.1", features = ["fs", "macros", "rt-multi-thread", "sync"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
[workspace.dependencies.rustls]
version = "0.23.17"
default-features = false
features = ["logging", "ring", "std", "tls12"]
[package]
name = "archer"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
publish = false
[dependencies]
anyhow.workspace = true
archer-http = { path = "archer-http" }
archer-proto = { path = "archer-proto" }
base64 = "0.22.1"
bimap = "0.6.3"
bytes = "1.8.0"
futures-util = { version = "0.3.31", features = ["sink"] }
hex = "0.4.3"
itoa = "1.0.11"
mime = "0.3.17"
once_cell.workspace = true
phf = { version = "0.11.2", features = ["macros"] }
postcard = { version = "1.0.10", default-features = false, features = ["use-std"] }
quinn.workspace = true
rand.workspace = true
rcgen = "0.13.1"
rusqlite = { version = "0.32.1", features = ["array", "bundled", "time", "trace"] }
rustls.workspace = true
rustls-pemfile.workspace = true
ryu = "1.0.18"
serde.workspace = true
serde_json = "1.0.133"
snap.workspace = true
thiserror.workspace = true
time.workspace = true
tokio = { workspace = true, features = ["fs", "macros", "rt-multi-thread"] }
tokio-shutdown = "0.1.4"
tokio-util = { version = "0.7.12", features = ["codec", "net"] }
tracing.workspace = true
tracing-archer = { path = "./tracing-archer" }
tracing-subscriber.workspace = true
unidirs = "0.1.1"
[dev-dependencies]
serde_urlencoded = "0.7.1"
[build-dependencies]
mime_guess = "2.0.5"
quote = { version = "1.0.37", default-features = false }
regex = "1.11.1"
siphasher = "1.0.1"
walkdir = "2.5.0"
[profile.release]
lto = true
strip = true