forked from cloudflare/trie-hard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (31 loc) · 873 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
[package]
name = "trie-hard"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/cloudflare/trie-hard"
categories = ["data-structures"]
keywords = ["trie", "prefix-search"]
description = """
Fast implementation of a trie data structure
"""
[dependencies]
builtin = { git = "https://github.com/verus-lang/verus", branch = "main" }
builtin_macros = { git = "https://github.com/verus-lang/verus", branch = "main" }
vstd = { git = "https://github.com/verus-lang/verus", branch = "main" }
# Should be in [dev-dependencies]
criterion = "0.5.1"
divan = "0.1.14"
once_cell = "1.19.0"
paste = "1.0.15"
phf = { version = "0.11.2", default-features = false }
radix_trie = "0.2.1"
rstest = "0.22.0"
[[bench]]
name = "divan_bench"
harness = false
[[bench]]
name = "criterion_bench"
harness = false
[build-dependencies]
phf_codegen = "0.11.2"