-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
75 lines (58 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
75 lines (58 loc) · 1.45 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
71
72
73
74
75
[workspace]
resolver = "3"
members = [
"crates/rivets-jsonl",
"crates/rivets",
"crates/rivets-mcp",
"crates/tethys",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["Rivets Contributors"]
[workspace.dependencies]
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Async streams
futures = "0.3"
# Date/time handling
chrono = { version = "0.4", features = ["serde"] }
# Error handling
thiserror = "2.0"
anyhow = "1.0"
# Cryptography
sha2 = "0.10"
# Async runtime
tokio = { version = "1.0", features = ["rt", "macros", "io-util", "fs", "sync"] }
async-trait = "0.1"
# Graph algorithms
# TODO(rivets-6op): Used for dependency graph cycle detection and traversal
petgraph = "0.6"
# Logging and tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "ansi"] }
# CLI
clap = { version = "4.5", features = ["derive", "cargo"] }
# CLI output formatting
colored = "3"
terminal_size = "0.4"
textwrap = "0.16"
# Internal workspace crates
rivets-jsonl = { version = "0.1.0", path = "crates/rivets-jsonl" }
rivets = { version = "0.1.0", path = "crates/rivets" }
# JSON Schema
schemars = "1.1"
# Configuration file format
serde_yaml = "0.9"
# Testing utilities
tempfile = "3.18"
rstest = "0.26"
proptest = "1.6"
[workspace.lints.rust]
unsafe_code = "forbid"
missing_docs = "warn"
[workspace.lints.clippy]
all = "warn"
pedantic = "warn"