-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (37 loc) · 850 Bytes
/
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
[workspace.package]
authors = ["nerodono"]
edition = "2021"
homepage = "https://github.com/nerodono/fluxus"
license = "MIT"
repository = "https://github.com/nerodono/fluxus"
[workspace]
resolver = "2"
members = ["packages/*", "crates/*"]
[workspace.dependencies.tokio]
version = "1.34.0"
default-features = false
features = [
"net",
"io-util",
"rt",
"rt-multi-thread",
"sync",
"macros",
"parking_lot",
]
[workspace.dependencies.flux-common]
version = "0.1.0"
path = "crates/flux-common"
[workspace.dependencies.tcp-flux]
version = "0.1.0"
path = "crates/tcp-flux"
[workspace.dependencies]
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
serde = { version = "1.0.193", features = ["derive"] }
toml = "0.8.8"
owo-colors = "3.5.0"
bitflags = "2.4.1"
color-eyre = "0.6.2"
thiserror = "1.0.50"
integral-enum = "3.0.1"