-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 966 Bytes
/
Cargo.toml
File metadata and controls
37 lines (34 loc) · 966 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
37
[package]
name = "neleus-db"
version = "0.1.1"
edition = "2024"
description = "Local-first Merkle-DAG database for AI agents with cryptographic proofs and immutable versioning"
license = "MIT"
repository = "https://github.com/auralshin/neleus-db"
homepage = "https://github.com/auralshin/neleus-db"
documentation = "https://docs.rs/neleus-db"
readme = "README.md"
keywords = ["database", "merkle", "ai-agents", "content-addressed", "versioning"]
categories = ["database-implementations", "cryptography", "data-structures"]
[dependencies]
aes-gcm = "0.10"
anyhow = "1.0"
base64 = "0.22"
blake3 = "1.5"
chacha20poly1305 = "0.10"
clap = { version = "4.5", features = ["derive"] }
getrandom = "0.2"
hex = "0.4"
libc = "0.2"
pbkdf2 = "0.12"
serde = { version = "1.0", features = ["derive"] }
serde_ipld_dagcbor = "0.6"
serde_json = "1.0"
sha2 = "0.10"
thiserror = "2.0"
[dev-dependencies]
rand = "0.8"
tempfile = "3.16"
[[bin]]
name = "neleus-db"
path = "src/main.rs"