-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 993 Bytes
/
Cargo.toml
File metadata and controls
36 lines (33 loc) · 993 Bytes
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
[package]
name = "celerix-store"
version = "0.1.2"
edition = "2021"
description = "A lightweight, low-latency KV data store with 1:1 parity with the orginal golang version, atomic persistence, and AES-256-GCM encryption."
license = "MIT"
repository = "https://github.com/celerix-dev/celerix-store-rust"
homepage = "https://github.com/celerix-dev/celerix-store-rust"
readme = "README.md"
keywords = ["kv", "store", "database", "json", "encryption"]
categories = ["database-implementations", "cryptography"]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = ["full"] }
tokio-rustls = "0.24"
rustls-pemfile = "1.0"
anyhow = "1.0"
thiserror = "1.0"
async-trait = "0.1"
futures = "0.3"
tempfile = "3.8"
log = "0.4"
env_logger = "0.10"
clap = { version = "4.0", features = ["derive"] }
aes-gcm = "0.10"
hex = "0.4"
[[bin]]
name = "celerix-stored"
path = "src/bin/stored.rs"
[[bin]]
name = "celerix"
path = "src/bin/cli.rs"