-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (58 loc) · 1.47 KB
/
Copy pathCargo.toml
File metadata and controls
70 lines (58 loc) · 1.47 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[workspace]
members = [
"crates/pure-reason-core",
"crates/pure-reason-cli",
"crates/pure-reason-macros",
"crates/pure-reason-api",
"crates/pure-reason-mcp",
"crates/pure-reason-py",
"crates/pure-reason-dashboard",
"crates/pure-reason-bench",
"crates/pure-reason-kb",
"crates/pure-reason-trace",
"crates/pure-reason-runtime",
"crates/pure-reason-verifier",
"crates/pure-reason-memory",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["PureReason Contributors"]
license = "Apache-2.0"
repository = "https://github.com/pure-reason/pure-reason"
[workspace.dependencies]
# Async
tokio = { version = "1", features = ["full"] }
async-trait = "0.1"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
# HTTP
reqwest = { version = "0.12", features = ["json", "stream"] }
axum = { version = "0.7", features = ["json"] }
# Error handling
thiserror = "2"
anyhow = "1"
# Logging / tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
# CLI
clap = { version = "4", features = ["derive", "env"] }
indicatif = "0.17"
colored = "2"
comfy-table = "7"
# Config
config = "0.14"
# Security
subtle = "2"
blake3 = "1"
# Utilities
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
regex = "1"
# Storage
rusqlite = { version = "0.32", features = ["bundled"] }
# Testing
proptest = "1"