-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (33 loc) · 859 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
cargo-features = ["named-profiles"]
[package]
name = "milkshell"
version = "0.1.0"
authors = ["Lauren Chris Horne <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = "0.7.3"
pest = "2.0"
pest_derive = "2.0"
regex = "1.3.1"
lazy_static = "1.4.0"
unindent = "0.1.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
crossbeam = "0.7.3"
anyhow = "1.0.28"
indoc = "0.3"
tokio = { version = "0.2.3", features = ["full"] }
tokio-tungstenite = "*"
tungstenite = "*"
futures = "0.3.4"
assert-json-diff = "1.0.3"
# looked cool, trait requirements didn't work
#futures-intrusive = "0.3.0"
task_scope = "0.1.1"
[dependencies.async-std]
version = "1.5.0"
features = ["unstable"]
[profile.custom]
inherits = "release"
opt-level = "z"