28 lines
669 B
TOML
28 lines
669 B
TOML
|
[package]
|
||
|
name = "frc"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
async-std = { version = "1.9.0", features = ["unstable"] }
|
||
|
futures = "0.3.15"
|
||
|
rand = "0.8.4"
|
||
|
serde = "1.0.126"
|
||
|
serde_json = "1.0.64"
|
||
|
serde_derive = "1.0.130"
|
||
|
# tokio = { version = "0.2", features = ["full"] }
|
||
|
tokio = { version = "1.19.2", features = ["full"] }
|
||
|
telexide = "0.1.6"
|
||
|
uuid = { version = "0.8.2", features = ["v4"] }
|
||
|
anyhow = "1.0.41"
|
||
|
thiserror = "1.0.26"
|
||
|
url = "2.2.2"
|
||
|
thirtyfour = "0.29.3"
|
||
|
rouille = "3.5.0"
|
||
|
confy = "0.4.0"
|
||
|
typemap = "0.3.3"
|
||
|
sysinfo = "0.24.5"
|
||
|
signal-hook = "0.3.14"
|