-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
58 lines (51 loc) · 1.21 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
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "rsdos"
version = "0.2.0"
description = "key-value store for file I/O on disk"
authors = ["Jusong Yu <[email protected]>"]
readme = "README.md"
repository = "https://github.com/unkcpz/rsdos"
homepage = "https://github.com/unkcpz/rsdos"
license = "MIT OR Apache-2.0"
rust-version = "1.78.0"
edition = "2021"
exclude = [
"misc/*",
"python/*",
]
[dependencies]
anyhow = "1.0.86"
bytes = "1.9.0"
clap = { version = "4.5.27", features = ["derive"] }
fallible-streaming-iterator = "0.1.9"
flate2 = { version = "1.0.31", features = ["zlib-ng"] }
hex = "0.4.3"
human_bytes = { version = "0.4.3", features = ["fast"] }
indicatif = "0.17.9"
ring = "0.17.8"
rusqlite = { version = "0.32.0", features = ["bundled"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.120"
tempfile = "3.15.0"
thiserror = "2.0.11"
uuid = { version = "1.13.0", features = ["serde", "v4"] }
zstd = "0.13.2"
[[bin]]
name = "rsdos"
path = "src/main.rs"
[lib]
name = "rsdos"
path = "src/lib.rs"
[dev-dependencies]
rand = "0.8.5"
rstest = "0.22.0"
[profile.release]
panic = "abort"
[profile.dist]
inherits = "release"
lto = true
codegen-units = 1
[profile.dev]
opt-level = 3
overflow-checks = false
lto = "fat"