-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (39 loc) · 917 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
[package]
name = "trying"
version = "0.5.1"
description = "Basic trie crate"
authors = [
"garypen <[email protected]>",
]
license = "Apache-2.0"
repository = "https://github.com/garypen/trying"
readme = "README.md"
keywords = ["trie", "collection", "generic"]
categories = ["data-structures"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[features]
serde = ["serde_crate"]
[dev-dependencies]
criterion = "0.5"
itertools = "0.11"
rand = "0.8"
serde_json = "1.0"
trying = { path = ".", features = ["serde"] }
unicode-segmentation = "1.8"
[[bench]]
name = "trying"
harness = false
[dependencies.serde_crate]
package = "serde"
optional = true
version = "1.0"
default-features = true
features = ["derive"]
[[example]]
name = "iterator"
path = "examples/iterator.rs"
[[example]]
name = "graphemes"
path = "examples/graphemes.rs"