-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
57 lines (53 loc) · 1.57 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
[workspace]
members = [
"aggligator",
"aggligator-monitor",
"aggligator-transport-bluer",
"aggligator-transport-tcp",
"aggligator-transport-usb",
"aggligator-transport-websocket",
"aggligator-util",
"aggligator-wrapper-tls",
]
exclude = ["aggligator-transport-websocket-web"]
resolver = "2"
[workspace.package]
edition = "2021"
rust-version = "1.80"
authors = ["Sebastian Urban <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/surban/aggligator"
[workspace.dependencies]
async-trait = "0.1"
atomic_refcell = "0.1.8"
byteorder = "1.4"
bytes = "1.1"
crc32fast = "1.3"
crossterm = "0.28"
futures = "0.3"
getrandom = "0.2"
js-sys = "0.3.72"
rand = "0.8"
rand_core = "0.6"
rand_xoshiro = "0.6"
serde = "1"
serde_json = "1"
test-log = { version = "0.2", default-features = false }
tokio = "1.43"
tokio-stream = "0.1"
tokio-util = "0.7"
tracing = "0.1"
tracing-subscriber = { version = "0.3", default-features = false }
wasm-bindgen = "0.2.95"
wasm-bindgen-futures = "0.4.45"
wasm-bindgen-test = "0.3.45"
web-sys = "0.3.72"
x25519-dalek = "2"
# for WASI on the web (wasm32-wasip1-threads target with `js` feature):
# [patch.crates-io]
# js-sys = { git = "https://github.com/rust-wasi-web/wasm-bindgen.git" }
# web-sys = { git = "https://github.com/rust-wasi-web/wasm-bindgen.git" }
# wasm-bindgen = { git = "https://github.com/rust-wasi-web/wasm-bindgen.git" }
# wasm-bindgen-futures = { git = "https://github.com/rust-wasi-web/wasm-bindgen.git" }
# wasm-bindgen-test = { git = "https://github.com/rust-wasi-web/wasm-bindgen.git" }