-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
63 lines (53 loc) · 1.24 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
58
59
60
61
62
63
[package]
name = "antrelay"
authors = ["Nathan Perry <np@nathanperry.dev>"]
version = "1.0.1"
edition = "2021"
default-run = "antrelay"
[workspace]
members = [
"codec",
"runtime",
"message",
"util",
"net",
]
[dependencies]
util = { path = "./util", package = "antrelay-util" }
message = { path = "./message", package = "antrelay-message" }
codec = { path = "./codec", package = "antrelay-codec" }
net = { path = "./net", package = "antrelay-net" }
runtime = { path = "./runtime", package = "antrelay-runtime" }
futures = "0.3"
actix = "0.13"
actix-broker = "0.4"
tokio-serial = "5.4"
tokio = { version = "1.33", features = ["full"] }
tokio-util = "0.7"
tokio-stream = "0.1"
async-compat = "0.2"
tokio-retry = "0.3"
console-subscriber = "0.1"
packed_struct = { version = "0.10", features = ["use_serde"] }
hex = "0.4"
base64 = "0.21"
bincode = "1.3"
serde = "1.0"
structopt = "0.3"
tap = "1.0"
cfg-if = "1.0"
rustyline-async = "0.2"
bytes = "1.1"
eyre = "0.6"
shlex = "1.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-log = "0.1"
rand = "0.8"
[target.'cfg(not(target_os = "windows"))'.dependencies]
exec = "0.3"
[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
strip = true