-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (40 loc) · 1.02 KB
/
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
38
39
40
41
42
43
44
45
46
[package]
name = "talna"
description = "Simple, embeddable time series database"
license = "MIT OR Apache-2.0"
version = "0.2.0"
edition = "2021"
rust-version = "1.80"
authors = ["marvin-j97"]
keywords = ["database", "lsmt", "lsm", "time series", "timeseries"]
categories = ["data-structures", "database-implementations", "algorithms"]
repository = "https://github.com/marvin-j97/talna"
homepage = "https://github.com/marvin-j97/talna"
readme = "README.md"
include = ["src/**/*", "LICENSE-APACHE", "LICENSE-MIT", "README.md"]
[lib]
name = "talna"
path = "src/lib.rs"
[features]
default = []
high_precision = []
[dependencies]
byteorder = "1.5.0"
fjall = "2.4.0"
log = "0.4.22"
logos = "0.14.0"
# nom = "7.1.3"
# nom_locate = "4.2.0"
regex = "1.10.5"
rustc-hash = "2.0.0"
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
tempfile = "3.12.0"
test-log = "0.2.16"
[[bench]]
name = "talna"
harness = false
path = "benches/talna.rs"
[package.metadata.cargo-all-features]
denylist = ["all"]
byteorder = "1.5.0"