2024-05-09 15:59:08 -07:00
|
|
|
[package]
|
2025-04-22 01:41:02 +00:00
|
|
|
name = "tuwunel_database"
|
2024-06-01 10:19:26 +00:00
|
|
|
categories.workspace = true
|
|
|
|
|
description.workspace = true
|
2024-05-09 15:59:08 -07:00
|
|
|
edition.workspace = true
|
2024-06-01 10:19:26 +00:00
|
|
|
keywords.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
readme.workspace = true
|
|
|
|
|
repository.workspace = true
|
|
|
|
|
version.workspace = true
|
2024-05-09 15:59:08 -07:00
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
path = "mod.rs"
|
2025-09-24 04:18:13 +00:00
|
|
|
bench = false
|
2024-05-09 15:59:08 -07:00
|
|
|
crate-type = [
|
|
|
|
|
"rlib",
|
|
|
|
|
# "dylib",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[features]
|
2025-06-24 21:23:55 +00:00
|
|
|
bzip2_compression = [
|
|
|
|
|
"rust-rocksdb/bzip2",
|
|
|
|
|
]
|
2025-04-01 08:39:41 +00:00
|
|
|
io_uring = [
|
|
|
|
|
"rust-rocksdb/io-uring",
|
2024-05-09 15:59:08 -07:00
|
|
|
]
|
|
|
|
|
jemalloc = [
|
2025-04-22 01:41:02 +00:00
|
|
|
"tuwunel-core/jemalloc",
|
2024-05-09 15:59:08 -07:00
|
|
|
"rust-rocksdb/jemalloc",
|
|
|
|
|
]
|
2025-04-01 08:39:41 +00:00
|
|
|
jemalloc_conf = [
|
2025-04-22 01:41:02 +00:00
|
|
|
"tuwunel-core/jemalloc_conf",
|
2025-04-01 08:39:41 +00:00
|
|
|
]
|
|
|
|
|
jemalloc_prof = [
|
2025-04-22 01:41:02 +00:00
|
|
|
"tuwunel-core/jemalloc_prof",
|
2025-04-01 08:39:41 +00:00
|
|
|
]
|
|
|
|
|
jemalloc_stats = [
|
2025-04-22 01:41:02 +00:00
|
|
|
"tuwunel-core/jemalloc_stats",
|
2025-04-01 08:39:41 +00:00
|
|
|
]
|
2025-06-24 21:23:55 +00:00
|
|
|
lz4_compression = [
|
|
|
|
|
"rust-rocksdb/lz4",
|
|
|
|
|
]
|
2025-04-01 08:39:41 +00:00
|
|
|
release_max_log_level = [
|
2025-04-22 01:41:02 +00:00
|
|
|
"tuwunel-core/release_max_log_level",
|
2025-04-01 08:39:41 +00:00
|
|
|
"log/max_level_trace",
|
|
|
|
|
"log/release_max_level_info",
|
|
|
|
|
"tracing/max_level_trace",
|
|
|
|
|
"tracing/release_max_level_info",
|
2024-05-09 15:59:08 -07:00
|
|
|
]
|
|
|
|
|
zstd_compression = [
|
2025-04-22 01:41:02 +00:00
|
|
|
"tuwunel-core/zstd_compression",
|
2024-05-09 15:59:08 -07:00
|
|
|
"rust-rocksdb/zstd",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2024-11-27 06:28:32 +00:00
|
|
|
async-channel.workspace = true
|
2024-07-13 21:02:43 +00:00
|
|
|
const-str.workspace = true
|
2025-06-07 21:11:44 +00:00
|
|
|
ctor.workspace = true
|
2024-08-08 17:18:30 +00:00
|
|
|
futures.workspace = true
|
2025-11-02 21:33:12 +00:00
|
|
|
itertools.workspace = true
|
2024-05-09 15:59:08 -07:00
|
|
|
log.workspace = true
|
2025-01-22 00:52:48 +00:00
|
|
|
minicbor.workspace = true
|
|
|
|
|
minicbor-serde.workspace = true
|
2024-05-09 15:59:08 -07:00
|
|
|
rust-rocksdb.workspace = true
|
2024-08-08 17:18:30 +00:00
|
|
|
serde.workspace = true
|
|
|
|
|
serde_json.workspace = true
|
2024-05-09 15:59:08 -07:00
|
|
|
tokio.workspace = true
|
|
|
|
|
tracing.workspace = true
|
2025-04-22 01:41:02 +00:00
|
|
|
tuwunel-core.workspace = true
|
2024-05-09 15:59:08 -07:00
|
|
|
|
2025-09-24 04:18:13 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
|
criterion.workspace = true
|
|
|
|
|
|
2024-05-09 15:59:08 -07:00
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
2025-10-01 02:41:24 +00:00
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
|
name = "ser"
|
|
|
|
|
harness = false
|