-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (33 loc) 路 943 Bytes
/
Copy pathCargo.toml
File metadata and controls
38 lines (33 loc) 路 943 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
29
30
31
32
33
34
35
36
37
38
[package]
name = "weighted_trie"
version = "0.2.0"
edition = "2021"
authors = ["Alexander Osipenko <mr.aosipenko@gmail.com>"]
description = "Weighted prefix trie for autosuggestions"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/subpath/weighted_trie"
homepage = "https://github.com/subpath/weighted_trie"
keywords = ["trie", "weighted-trie", "autocomplete"] # up to 5 keywords, each keyword should have <= 20 chars
categories = ["compression", "data-structures"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hashbrown = "0.14"
smallvec = "1.13"
compact_str = "0.8"
[dev-dependencies]
criterion = "0.4.0"
lazy_static = "1.4.0"
memory-stats = "1.0.0"
stats_alloc = "0.1.10"
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
panic = "abort"
[[bench]]
name = "bench"
harness = false
[[bench]]
name = "memory_bench"
harness = false