-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 1.06 KB
/
Copy pathCargo.toml
File metadata and controls
35 lines (32 loc) · 1.06 KB
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
# SPDX-License-Identifier: MPL-2.0
[package]
name = "verisimiser"
version = "0.2.0"
edition = "2024"
rust-version = "1.85"
authors = ["Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>"]
description = "Augment any database with VeriSimDB octad capabilities — drift detection, provenance, temporal versioning, and modality overlays"
license = "MPL-2.0"
repository = "https://github.com/hyperpolymath/verisimiser"
keywords = ["verisim", "database", "augmentation", "drift-detection", "provenance"]
categories = ["command-line-utilities", "database"]
build = "build.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
anyhow = "1"
thiserror = "2"
chrono = { version = "0.4", features = ["serde"] }
sha2 = "0.10"
rusqlite = { version = "0.32", features = ["bundled", "hooks"] }
sqlparser = "0.50"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
[build-dependencies]
chrono = "0.4"
[dev-dependencies]
tempfile = "3"
proptest = "1"
serde_json = "1"