-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (50 loc) · 1.27 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
[package]
name = "rs-wordcloud"
description = "☁ Flexible WordCloud implementation for ⚙Rust"
homepage = "https://github.com/tooxo/wordcloud"
documentation = "https://docs.rs/rs-wordcloud"
repository = "https://github.com/tooxo/wordcloud"
readme = "Readme.md"
version = "0.1.0"
edition = "2021"
license = "MPL-2.0"
categories = ["wordcloud"]
keywords = ["wordcloud", "text", "visualization"]
exclude = [
".fleet/",
".github/",
"debug/",
"target/",
".idea/",
".git/"
]
[features]
default = ["stopwords", "woff2", "background_image"]
stopwords = ["include_dir"]
background_image = ["image", "edge-detection"]
[[example]]
name = "example"
path = "example/main.rs"
[lib]
name = "wordcloud"
path = "src/lib.rs"
doctest = false
[dependencies]
rayon = "1.6.1"
svg = "0.14.0"
image = { version = "0.24.5", optional = true }
edge-detection = { version = "0.2.6", optional = true }
rand = { version = "0.8.5", features = ["small_rng"] }
parking_lot = "0.12.1"
quadtree_rs = "0.1.3"
num-traits = "0.2.15"
swash = "0.1.6"
itertools = "0.12.0"
base64 = "0.21.2"
unicode-script = "0.5.5"
woff2 = { version = "0.3.0", optional = true }
rs-woff = "0.1.0"
include_dir = { version = "0.7.3", features = ["glob"], optional = true }
[profile.profiler]
inherits = "release"
debug = 1