-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
133 lines (108 loc) · 3.21 KB
/
Cargo.toml
File metadata and controls
133 lines (108 loc) · 3.21 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
[workspace]
resolver = "2"
members = [
"crates/kelpie-core",
"crates/kelpie-runtime",
"crates/kelpie-registry",
"crates/kelpie-storage",
"crates/kelpie-memory",
"crates/kelpie-sandbox",
"crates/kelpie-tools",
"crates/kelpie-wasm",
"crates/kelpie-cluster",
"crates/kelpie-agent",
"crates/kelpie-dst",
"crates/kelpie-vm",
"crates/kelpie-server",
"crates/kelpie-cli",
]
exclude = [
"images/guest-agent", # Built inside Docker, not part of main workspace
]
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
license = "Apache-2.0"
repository = "https://github.com/nerdsane/kelpie"
authors = ["nerdsane"]
[workspace.dependencies]
# Async runtime
tokio = { version = "1.34", features = ["full"] }
async-trait = "0.1"
futures = "0.3"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
bytes = { version = "1.5", features = ["serde"] }
# Error handling
thiserror = "1.0"
anyhow = "1.0"
# Synchronization primitives
once_cell = "1.19"
# Logging and tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# OpenTelemetry
opentelemetry = "0.21"
opentelemetry-otlp = { version = "0.14", features = ["tonic"] }
opentelemetry_sdk = { version = "0.21", features = ["rt-tokio"] }
opentelemetry-prometheus = "0.14"
tracing-opentelemetry = "0.22"
prometheus = "0.13"
# Deterministic RNG
rand = "0.8"
rand_chacha = "0.3"
# System utilities
hostname = "0.4"
# Time - pin to 0.4.38 for Umi compatibility (arrow-arith conflict)
chrono = { version = "=0.4.38", features = ["serde"] }
# Hashing and checksums
crc32fast = "1.3"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
# CLI
clap = { version = "4.4", features = ["derive"] }
# Web framework
axum = { version = "0.7", features = ["macros"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["cors", "trace", "normalize-path"] }
hyper = { version = "1.0", features = ["full"] }
# HTTP client for LLM APIs
reqwest = { version = "0.12", features = ["json"] }
# Streaming
tokio-stream = "0.1"
# UUID generation
uuid = { version = "1.6", features = ["v4", "v5", "serde"] }
# WASM runtime
wasmtime = "16"
wasmtime-wasi = "16"
# FoundationDB (optional, feature-gated)
foundationdb = { version = "0.10", features = ["fdb-7_3"] }
# Formal verification
stateright = "0.30"
# Testing
proptest = "1.4"
criterion = "0.5"
# Embeddings (optional)
fastembed = "5.4"
# Internal crates
kelpie-core = { path = "crates/kelpie-core" }
kelpie-runtime = { path = "crates/kelpie-runtime" }
kelpie-registry = { path = "crates/kelpie-registry" }
kelpie-storage = { path = "crates/kelpie-storage" }
kelpie-wasm = { path = "crates/kelpie-wasm" }
kelpie-cluster = { path = "crates/kelpie-cluster" }
kelpie-agent = { path = "crates/kelpie-agent" }
kelpie-dst = { path = "crates/kelpie-dst" }
kelpie-memory = { path = "crates/kelpie-memory" }
kelpie-sandbox = { path = "crates/kelpie-sandbox" }
kelpie-tools = { path = "crates/kelpie-tools" }
kelpie-vm = { path = "crates/kelpie-vm" }
# External memory library
umi-memory = { git = "https://github.com/rita-aga/umi", package = "umi-memory" }
[profile.release]
lto = true
codegen-units = 1
[profile.bench]
lto = true