-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (46 loc) · 1.11 KB
/
Cargo.toml
File metadata and controls
57 lines (46 loc) · 1.11 KB
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
48
49
50
51
52
53
54
55
56
57
[package]
name = "cachebox"
version = "5.2.3"
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"
authors = ["awolverp"]
[lib]
name = "cachebox"
crate-type = ["cdylib"]
[profile.release]
codegen-units = 1
debug = false
incremental = false
lto = true
panic = "abort"
strip = "symbols"
[features]
mimalloc = ["dep:mimalloc"]
[dependencies.hashbrown]
version = "0.14.5"
default-features = false
features = ["inline-more", "raw"]
[dependencies.fastrand]
version = "2.3.0"
[dependencies.pyo3]
version = "0.27.1"
default-features = false
features = ["macros", "extension-module", "generate-import-lib"]
[dependencies.cfg-if]
version = "1.0.3"
[dependencies.parking_lot]
version = "0.12.5"
[dependencies.mimalloc]
version = "0.1.48"
features = ["v3", "override", "local_dynamic_tls"]
optional = true
[build-dependencies.pyo3-build-config]
version = "0.27.1"
features = ["resolve-config"]
[lints.clippy]
dbg_macro = "warn"
print_stdout = "warn"