-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
37 lines (33 loc) · 855 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
[package]
name = "taurus"
authors = ["Sean Ray <[email protected]>"]
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.17.0", features = ["full"] }
warp = "0.3"
tokio-stream = "0.1.6"
futures = { version = "0.3", default-features=false }
uuid = { version = "0.8.2", features = ["v4"] }
serde = "1.0.117"
serde_derive = "1.0.117"
serde_json = "1.0.59"
regex = "1.5.4"
rcon-rs = { git = "https://github.com/notseanray/rcon-rs" }
sysinfo = "0.22.3"
evalexpr = "7.0.0"
chrono = "0.4.0"
lazy_static = "1.4.0"
anyhow = "1.0.57"
log = "0.4.17"
pretty_env_logger = "0.4.0"
notify = "4.0.17"
[profile.release]
lto = "fat"
panic = "abort"
strip = "symbols"
[target.x86_64-unknown-linux-gnu]
rustflags = [
"-C", "link-arg=-fuse-ld=lld"
]