-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
93 lines (75 loc) · 2.18 KB
/
Cargo.toml
File metadata and controls
93 lines (75 loc) · 2.18 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
[package]
name = "inception-registry"
version = "0.1.0"
edition = "2021"
rust-version = "1.70"
authors = ["Future Present Labs <hello@futurepresentlabs.com>"]
description = "Registry and orchestrator for Claude Code sessions"
license = "AGPL-3.0"
repository = "https://github.com/FuturePresentLabs/inception"
[workspace]
members = ["."]
resolver = "2"
authors = ["Future Present Labs <hello@futurepresentlabs.com>"]
description = "Registry and orchestrator for Claude Code sessions"
license = "AGPL-3.0"
repository = "https://github.com/FuturePresentLabs/inception"
[dependencies]
# Async runtime
tokio = { version = "1.35", features = ["full", "tracing"] }
tokio-util = { version = "0.7", features = ["codec"] }
# HTTP/gRPC server
axum = { version = "0.7", features = ["ws", "macros"] }
tower = { version = "0.4", features = ["full"] }
tower-http = { version = "0.5", features = ["cors", "trace"] }
reqwest = { version = "0.11", features = ["json"] }
# WebSocket
futures = "0.3"
futures-util = "0.3"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Database
sqlx = { version = "0.7", features = ["runtime-tokio", "sqlite", "postgres", "migrate", "chrono"] }
# Configuration
config = "0.14"
# Logging & Tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
tracing-opentelemetry = "0.22"
opentelemetry = "0.21"
opentelemetry-jaeger = "0.20"
# Metrics
metrics = "0.22"
metrics-exporter-prometheus = "0.13"
# mTLS / Security
rustls = { version = "0.23", features = ["ring"] }
rustls-pemfile = "2.0"
tokio-rustls = "0.25"
rcgen = "0.12"
# Authentication
jsonwebtoken = "9.2"
# Error handling
thiserror = "1.0"
anyhow = "1.0"
# Utilities
uuid = { version = "1.6", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
rand = "0.8"
once_cell = "1.19"
# Testing
tokio-test = "0.4"
mockall = "0.12"
async-trait = "0.1.89"
[features]
default = []
test-helpers = []
[dev-dependencies]
reqwest = { version = "0.11", features = ["json"] }
inception-registry = { path = ".", features = ["test-helpers"] }
[lib]
name = "inception_registry"
path = "src/lib.rs"
[[bin]]
name = "inception-registry"
path = "src/main.rs"