forked from hermit-os/hermit-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (31 loc) · 1.04 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
[workspace]
resolver = "2"
members = [
"benches/alloc",
"benches/micro",
"benches/netbench",
"examples/demo",
"examples/fuse_test",
"examples/hello_world",
"examples/httpd",
"examples/miotcp",
"examples/mioudp",
"examples/polling",
"examples/rftrace-example",
"examples/testtcp",
"examples/testudp",
"examples/tls",
"examples/tokio",
"examples/webserver",
"examples/dns",
"examples/mutex",
"hermit",
"hermit-abi",
]
[patch.crates-io]
hyper-util = { git = "https://github.com/hermit-os/hyper-util.git", branch = "hermit" }
mio = { git = "https://github.com/hermit-os/mio.git", branch = "v0.8.x" }
rustls-rustcrypto = { git = "https://github.com/RustCrypto/rustls-rustcrypto", rev = "e6d5ed9652228ff09e56fee2534b6f60877fb7b8" }
socket2 = { git = "https://github.com/hermit-os/socket2.git", branch = "hermit" }
tokio = { git = "https://github.com/hermit-os/tokio.git", branch = "hermit" }
tokio-rustls = { git = "https://github.com/hermit-os/tokio-rustls.git", branch = "v/0.26.0" }