-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (30 loc) · 924 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
[package]
name = "apilar"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
num = "0.4"
num-traits = "0.2"
num-derive = "0.3"
moveslice = "2.0.1"
rand = { version = "0.8.5", features = ["small_rng"]}
strum = "0.24"
strum_macros = "0.24"
clap = { version = "3.2.14", features = ["derive"] }
serde_cbor = "0.10"
serde = { version= "1.0.140", features = ["rc"] }
serde_derive = "1.0.140"
serde-big-array = "0.4.1"
serde_json = "1.0"
axum = { version = "0.5.14", features=["ws", "headers"] }
hyper = { version = "0.14.20", features = ["full"] }
tokio = { version = "1.20.1", features = ["full"] }
tower = "0.4.13"
tower-http = {version = "0.3.4", features = ["full"] }
tracing-subscriber = {version = "0.3.15", features = ["env-filter"]}
futures = "0.3"
anyhow = "1.0.59"
zip = "0.6.2"
serde_with = "2.0.0"
rustc-hash = "1.1.0"