-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
34 lines (28 loc) · 857 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
[package]
name = "wcloud"
version = "0.1.0"
authors = ["afrmtbl <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
debug = true
# TODO: Have only the binary depending on clap
[dependencies]
regex = "1.7.3"
ab_glyph = "0.2.20"
image = "0.24.6"
palette = "0.6.1"
clap = "3.2.23"
csscolorparser = "0.6.2"
woff2 = { git = "https://github.com/isaackd/woff2-rs.git" }
nanorand = "0.7.0"
serde = { version = "1.0.164", optional = true }
serde_derive = { version = "1.0.164", optional = true }
serde_json = { version = "1.0.99", optional = true }
[dev-dependencies]
criterion = { version = "0.4.0", features = ["html_reports"] }
[[bench]]
name = "create_wordcloud"
harness = false
[features]
visualize = ["dep:serde", "dep:serde_derive", "dep:serde_json"]