-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (47 loc) · 1.12 KB
/
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
54
55
56
57
58
59
60
[package]
name = "protohackers"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bytes = "1.4.0"
primes = "0.3.0"
rand = "0.8.5"
rayon = "1.7.0"
serde = { version = "1.0.158", features = ["derive"] }
serde_json = "1.0.94"
tokio = { version = "1.28.1", features = ["full"] }
uuid = { version="1.4.1", features = ["v4", "serde"] }
[[bin]]
name = "smoke_test"
path = "src/smoke_test_0/main.rs"
[[bin]]
name = "prime_time"
path = "src/prime_time_1/main.rs"
[[bin]]
name = "means_to_an_end"
path = "src/means_to_an_end_2/main.rs"
[[bin]]
name = "budget_chat"
path = "src/budget_chat_3/main.rs"
[[bin]]
name = "unusual_db"
path = "src/unusual_db_4/main.rs"
[[bin]]
name = "mob_proxy"
path = "src/mob_in_the_middle_5/main.rs"
[[bin]]
name = "speed"
path = "src/speed_daemon_6/main.rs"
[[bin]]
name = "line"
path = "src/line_reversal_7/main.rs"
[[bin]]
name = "insecure"
path = "src/insecure_sockets_layer_8/main.rs"
[[bin]]
name = "job"
path = "src/job_centre_9/main.rs"
[[bin]]
name = "vcs"
path = "src/voracious_code_storage_10/main.rs"