You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
896 B
TOML

[package]
2 years ago
name = "cozorocks"
version = "0.1.3"
edition = "2021"
license = "MPL-2.0"
authors = ["Ziyang Hu"]
description = "Bindings to RocksDB used by the cozo crate"
homepage = "https://github.com/cozodb/cozo"
repository = "https://github.com/cozodb/cozo"
documentation = "https://cozodb.github.io/current/manual"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2 years ago
cxx = "1.0.69"
miette = "5.5.0"
libc = "0.2"
tikv-jemalloc-sys = { version = "0.5", features = ["unprefixed_malloc_on_supported_platforms"], optional = true }
lz4-sys = { version = "1.9" }
zstd-sys = { version = "2.0", features = ["zdict_builder"] }
2 years ago
[features]
jemalloc = ["tikv-jemalloc-sys"]
io-uring = ["pkg-config"]
[build-dependencies]
cxx-build = "1.0.69"
pkg-config = { version = "0.3.25", optional = true }
cc = { version = "1.0", features = ["parallel"] }