-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
61 lines (49 loc) · 1012 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
54
55
56
57
58
59
60
61
[package]
name = "wolges"
version = "0.1.0"
authors = ["Andy Kurnia"]
edition = "2021"
default-run = "auto"
license = "MIT"
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.dev]
opt-level = 3
[dependencies]
csv = "1.3.1"
num_cpus = "1.16.0"
rand = "0.8.5"
rand_chacha = "0.3.1"
rustyline = "15.0.0"
rustyline-derive = "0.11.0"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.135"
shell-words = "1.1.0"
tokio = { version = "1.43.0", features = ["full"] }
[[bin]]
name = "auto"
path = "src/main_auto.rs"
[[bin]]
name = "buildlex"
path = "src/main_build.rs"
[[bin]]
name = "endgame"
path = "src/main_endgame.rs"
[[bin]]
name = "json"
path = "src/main_json.rs"
[[bin]]
name = "leave"
path = "src/main_leave.rs"
[[bin]]
name = "lex"
path = "src/main_lex.rs"
[[bin]]
name = "read"
path = "src/main_read.rs"
[[bin]]
name = "shell"
path = "src/main_shell.rs"
[[bin]]
name = "simmer"
path = "src/main_simmer.rs"