-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
132 lines (112 loc) · 3.21 KB
/
Copy pathCargo.toml
File metadata and controls
132 lines (112 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
[workspace]
resolver = "2"
members = [
# Core crates
"orbit/util",
"orbit/shared",
"orbit/proto",
"orbit/client",
"orbit/client-spring",
"orbit/server",
"orbit/server-etcd",
"orbit/server-prometheus",
"orbit/engine",
"orbit/application",
"orbit/operator",
"orbit/compute",
"orbit/ml",
"orbit/cli",
# Tests
"tests",
]
# Examples excluded from workspace build
# - examples/hello-world
# - examples/distributed-counter-example
# - examples/distributed-transactions
# - examples/resp-server
# - examples/vector-store
# - examples/pgvector-store
# - examples/saga-example
# - examples/orbitql-example
# - examples/multi-model-query-example
# - examples/multi-protocol-server
# - examples/demos/benchmarks-demo
# - examples/demos/timeseries-demo
# - examples/actor-memory-integration
# - examples/mcp-advanced-server
# - examples/mcp-basic-client
# - examples/ml-sql-functions
# - examples/demos/comprehensive-multimodel-demo
# - examples/demos/multiprotocol-demo
# Exclude benchmarks from default workspace build due to WAL replay issues
# orbit-benchmarks contains comprehensive performance tests including:
# - OrbitQL query language benchmarks (TPC-H, TPC-C, TPC-DS)
# - Actor system performance benchmarks
# - Storage backend comparison benchmarks (with known WAL issues)
# - Heterogeneous compute acceleration benchmarks
exclude = [
"benchmarks",
"orbit/desktop",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Ravindra Boddipalli <ravindra@turingworks.com>"]
license = "BSD-3-Clause OR MIT"
description = "Orbit - Build distributed and scalable online services (Rust implementation)"
repository = "https://github.com/TuringWorks/orbit-rs"
[workspace.metadata.clippy]
cognitive-complexity-threshold = 15
[workspace.dependencies]
pyo3 = "0.29"
# Kubernetes operator dependencies
kube = "0.99"
k8s-openapi = "0.24"
controller-rs = "0.1"
serde_yaml_ng = "0.10"
clap = "4.0"
hyper = "1.0"
# Core async runtime
tokio = { version = "1.48", features = ["full"] }
tokio-stream = "0.1"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# gRPC and Protocol Buffers
tonic = "0.14"
tonic-prost = "0.14"
prost = "0.14"
prost-types = "0.14"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Error handling
anyhow = "1.0"
thiserror = "2.0"
# Time and UUID
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.19", features = ["v4", "serde"] }
# Collections and utilities
dashmap = "6.0"
futures = "0.3"
once_cell = "1.21"
# Async traits
async-trait = "0.1"
# Metrics
metrics = "0.24"
metrics-exporter-prometheus = "0.18"
# Code quality and patterns
regex = "1.10"
paste = "1.0"
exponential-backoff = "2.0" # Replaces unmaintained backoff
# Testing
mockall = "0.15"
cucumber = "0.23"
proptest = "1.4"
tokio-test = "0.4"
rand = "0.10"
# Security patches
# Note: tikv-client has been removed from dependencies due to unresolved protobuf vulnerabilities
# See orbit/protocols/src/persistence/mod.rs for details
# Note: serde_yaml 0.9 was deprecated; migrated to serde_yaml_ng (via serde_yml)
# yaml-rust is still a transitive dep of syntect but not directly depended on