-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (33 loc) · 991 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]
authors = ["Helsing GmbH"]
build = "build.rs"
categories = ["database"]
description = "Helsing's Rust bindings for sqlite3's lsm1 extension in stand-alone fashion."
documentation = "https://docs.rs/lsmlite-rs/"
edition = "2021"
keywords = ["lsm", "storage-engine", "embedded", "persistence"]
license = "Apache-2.0"
name = "lsmlite-rs"
readme = "README.md"
repository = "https://github.com/helsing-ai/lsmlite-rs"
rust-version = "1.67"
version = "0.2.1"
[dependencies]
libz-sys = { version = "1.1.8", default-features = false, features = ["libc"] }
lz4-sys = "1.9.4"
prometheus = "0.13.3"
serde = { version = "1.0.157", features = ["derive"] }
tracing = { version = "0.1.37", features = ["log"] }
zstd-sys = "2.0.7"
[dev-dependencies]
chrono = "0.4.24"
md5 = "0.7.0"
nix = "0.26.2"
prost = "0.11.8"
rand = "0.8.5"
rand_mt = "4.2.1"
tracing-subscriber = { version = "0.3.16", features = ["std", "env-filter"] }
[build-dependencies]
cc = "1.0.79"
[profile.dev]
incremental = false