-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (30 loc) · 865 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
[workspace]
members = ["algorithm-macro"]
[package]
name = "algorithm"
version = "0.1.18"
edition = "2021"
authors = ["tickbh <[email protected]>"]
description = "about algorithm data structure, now has ttl with lru/lru-k/lfu/arc and slab/rbtree/roaring_bitmap/timer_wheelss, 关于算法常用的数据结构"
repository = "https://github.com/tickbh/algorithm-rs"
license = "Apache-2.0"
keywords = ["arc", "lru", "lfu", "timerwheel", "slab"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
lazy_static = "1.5.0"
hashbrown = "0.15.2"
log = "0.4.27"
rand = "0.9.0"
[dependencies.algorithm-macro]
# path = "algorithm-macro"
version = "0.1"
[dev-dependencies]
libc = "0.2.169"
slab = "0.4.9"
[profile.release]
opt-level = 3
debug = true
[features]
default = ["ttl"]
hashbrown = []
ttl = []