forked from dariost/CodeColosseum
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 742 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 742 Bytes
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 = "CodeColosseum"
version = "0.0.1"
authors = ["Dario Ostuni <dario.ostuni@gmail.com>"]
edition = "2018"
license = "MPL-2.0"
[[bin]]
name = "coco"
path = "src/client.rs"
[[bin]]
name = "cocod"
path = "src/server.rs"
[dependencies]
tokio = { version = "1", features = ["full"] }
tokio-tungstenite = { version = "0.14", features = ["connect", "rustls-tls"] }
tracing = "0.1"
tracing-subscriber = "0.2"
tracing-journald = "0.1"
async-trait = "0.1"
futures-util = "0.3"
clap = { version = "3", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
data-encoding = "2"
rand = "0.8"
regex = "1"
whoami = "1"
tempfile = "3"
prettytable-rs = "0.8"
[target.'cfg(unix)'.dependencies]
nix = "0.20"