-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (64 loc) · 1.87 KB
/
Cargo.toml
File metadata and controls
72 lines (64 loc) · 1.87 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
61
62
63
64
65
66
67
68
69
70
71
72
[workspace]
members = [".", "netmito"]
resolver = "2"
[workspace.package]
version = "0.6.8"
edition = "2021"
homepage = "https://github.com/stack-rs/mitosis"
repository = "https://github.com/stack-rs/mitosis"
rust-version = "1.76"
license = "Apache-2.0"
readme = "README.md"
description = "A Unified Distributed Transport Evaluation Framework"
keywords = ["distributed", "transport", "evaluation", "network", "utility"]
categories = ["network-programming", "concurrency", "command-line-utilities"]
[workspace.dependencies]
clap = { version = "4.5.51", features = ["std", "derive"] }
jsonwebtoken = "9.3.1"
md5 = "0.8.0"
redis = { version = "0.32.7", features = ["tokio-comp"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.48", features = [
"macros",
"rt-multi-thread",
"parking_lot",
"process",
"signal",
"net",
"time",
"sync",
"io-util",
] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
[package]
name = "mito"
version.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
rust-version.workspace = true
license.workspace = true
readme.workspace = true
description.workspace = true
keywords.workspace = true
categories.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { workspace = true }
netmito = { path = "netmito", version = "0.6.8" }
shadow-rs = { version = "1.3.0", default-features = false }
tokio = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
[features]
default = ["crossfire-channel"]
debugging = ["netmito/debugging"]
crossfire-channel = ["netmito/crossfire-channel"]
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[build-dependencies]
shadow-rs = "1.3.0"