-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 708 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 708 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
[package]
name = "spiderweb"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
ordered-float = "3.0"
no-panic = "0.1.26"
average = "0.14.1"
rand_distr = "0.4.3"
rand = "0.8.5"
rayon = "1.8"
clipboard = "0.5.0"
rand_hc = "0.3"
serde_json_any_key = "2.0.0"
itertools = "0.12"
[dependencies.uuid]
version = "1.1.2"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]