-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (57 loc) · 1.8 KB
/
Copy pathCargo.toml
File metadata and controls
60 lines (57 loc) · 1.8 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
60
[workspace]
resolver = "3"
members = ["dhttp", "identity", "home", "api", "access", "log"]
[workspace.package]
version = "0.6.0-beta.5"
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/genmeta/dhttp"
readme = "README.md"
keywords = ["dhttp", "http3", "quic", "identity", "network"]
categories = ["network-programming"]
[workspace.dependencies]
bytes = "1"
dirs = "6"
snafu = "0.9"
serde = { version = "1", features = ["derive"] }
futures = "0.3"
matchit = "0.9"
rustls = { version = "0.23", default-features = false }
tokio = { version = "1" }
toml = "1"
tower-service = "0.3"
tracing = "0.1"
x509-parser = "0.18"
bon = "3"
http = "1"
serde_json = "1"
sea-orm-migration = { version = "1", features = ["runtime-tokio-rustls"] }
sea-orm = { version = "1", features = ["runtime-tokio-rustls"] }
regex = "1"
regex-automata = "0.4"
peg = "0.8"
globset = "0.4"
derive_more = "2"
clap = { version = "4", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
tracing-subscriber = { version = "0.3", default-features = false, features = ["fmt"] }
# Keep same-repository workspace members as path dependencies, except staged
# dhttp-identity releases, which resolve through crates.io to avoid duplicate
# identity types with h3x/ddns in the formal release graph.
dhttp-identity = "0.3.0-beta.1"
dhttp-home = { path = "home", version = "0.5.0-beta.1" }
dquic = { version = "0.7.0-beta.4", default-features = false }
ddns = { package = "dyns", version = "0.7.0-beta.2", features = [
"resolvers",
"publishers",
"h3",
"http",
"mdns",
"dquic-network",
] }
h3x = { version = "0.6.0-beta.4", features = [
"dquic",
] }
dhttp = { path = "dhttp", version = "0.6.0-beta.5" }
dhttp-access = { path = "access", version = "0.4.0-beta.2" }
dhttp-log = { path = "log", version = "0.1.0-beta.1" }