-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (40 loc) · 849 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "protohackers"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "smoketest"
test = false
[[bin]]
name = "primetime"
[[bin]]
name = "meanstoanend"
[[bin]]
name = "budgetchat"
[[bin]]
name = "unusualdb"
[[bin]]
name = "mob"
[[bin]]
name = "speed"
[[bin]]
name = "reversal"
[[bin]]
name = "insecure"
[[bin]]
name = "jobcentre"
[[bin]]
name = "vcs"
[[bin]]
name = "pestcontrol"
[dependencies]
async-stream = "0.3.5"
clap = { version = "4.3.0", features = ["derive"] }
futures = "0.3.28"
md5 = "0.7.0"
rand = "0.8.5"
regex = "1.9.1"
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
tokio = { version = "1.28.2", features = ["rt", "macros", "rt-multi-thread", "time", "net", "sync", "io-util", "test-util", "fs"] }
uuid = { version = "1.4.1", features = ["v4", "fast-rng", "macro-diagnostics"] }