forked from google/pica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 784 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
[package]
name = "pica"
authors = [
"Adrien Larbanet",
"Charlie Boutier",
"David Duarte",
"Henri Chataing",
]
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "pica"
path = "src/lib.rs"
[[bin]]
name = "server"
path = "src/bin/server/mod.rs"
[dependencies]
tokio = { version = "1.18.5", features = ["full"] }
tokio-stream = { version = "0.1.8", features = ["sync"] }
bytes = "1"
anyhow = "1.0.56"
num-derive = "*"
num-traits = "*"
thiserror = "*"
glam = "0.20.3"
hyper = { version = "0.14", features = ["server", "stream", "http1", "tcp"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
hex = "0.4.3"
clap = { version = "4.1.8", features = ["derive"] }