-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (42 loc) · 1.33 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
[package]
name = "hermes"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ratatui = { version = "0.27", default-features = false, features = ["termion"] }
termion = "4.0"
tokio = { version = "1.0", features = [ "sync", "time", "rt-multi-thread", "macros" ] }
reqwest = { version = "0.12", features = [ "gzip" ] }
serde = { version = "1.0", features = [ "derive" ] }
json = { version = "1.0", package = "serde_json" }
humantime = { version = "1.1", package = "humantime-serde" }
url = { version = "2.5", features = [ "serde" ] }
anyhow = "1.0"
toml = "0.8"
bytes = "1.6"
futures = "0.3"
hmac = { version = "0.12" }
hex = "0.4"
sha2 = "0.10"
urlencode = { package = "serde_urlencoded", version = "0.7" }
humantimecore = { package = "humantime", version = "2.1" }
cstring = { package = "compact_str", version = "0.7", features = [ "serde" ] }
itoa = "1.0"
tracing = "0.1"
tracing-appender = "0.2.3"
tracing-subscriber = { version = "0.3.18", features = [ "json" ] }
[dependencies.ws]
package = "tokio-websockets"
version = "0.7"
features = [ "client", "simd", "native-tls", "fastrand", "openssl" ]
[features]
default = ["simulate"]
live = []
simulate = []
[profile.release]
opt-level = 2
# lto = true
codegen-units = 1
panic = 'abort'
strip = 'debuginfo'