-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
37 lines (32 loc) · 996 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
[package]
name = "cachebox"
version = "4.4.2"
edition = "2021"
description = "The fastest memoizing and caching Python library written in Rust"
readme = "README.md"
license = "MIT"
homepage = "https://github.com/awolverp/cachebox"
repository = "https://github.com/awolverp/cachebox.git"
[lib]
name = "cachebox"
crate-type = ["cdylib"]
[profile.release]
codegen-units = 1
debug = false
incremental = false
lto = "fat"
panic = "abort"
strip = "symbols"
[dependencies]
hashbrown = { version = "^0.14", default-features = false, features=["inline-more", "raw"]}
fastrand = "^2.3"
pyo3 = { version = "0.23.4", default-features = false, features=["macros", "extension-module"] }
cfg-if = "1.0"
parking_lot_core = { version = "^0.9", default-features = false }
lock_api = { version = "^0.4", default-features = false }
fxhash = {version = "^0.2"}
[build-dependencies]
pyo3-build-config = { version = "0.23.4", features = ["resolve-config"] }
[lints.clippy]
dbg_macro = "warn"
print_stdout = "warn"