-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (59 loc) · 2.05 KB
/
Copy pathCargo.toml
File metadata and controls
62 lines (59 loc) · 2.05 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
[package]
name = "aegis-seal-gateway"
version = "0.15.0-pre-alpha"
edition = "2021"
rust-version = "1.75"
authors = ["100monkeys AI, Inc."]
license = "AGPL-3.0"
repository = "https://github.com/100monkeys-ai/aegis-seal-gateway"
description = "Standalone SEAL tooling gateway for workflow macro-tools, API exploration, and ephemeral CLI execution"
readme = "README.md"
include = [
"src/**",
"migrations/**",
"README.md",
"LICENSE",
"build.rs",
"Cargo.toml",
"proto-vendor/aegis/seal_gateway.proto",
]
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
axum = { version = "0.8", features = ["macros"] }
base64 = "0.22"
chrono = { version = "0.4", features = ["serde"] }
dirs = "6.0"
ed25519-dalek = "2.1"
futures = "0.3"
handlebars = "6.2"
http = "1.1"
metrics = "0.24"
metrics-exporter-prometheus = { version = "0.16", default-features = false, features = ["http-listener"] }
jsonwebtoken = "9.3"
jsonpath_lib = "0.3"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "sqlite", "postgres", "chrono", "uuid", "json", "migrate"] }
thiserror = "2.0"
tokio = { version = "1.44", features = ["macros", "rt-multi-thread", "signal", "process", "fs"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
url = "2.5"
uuid = { version = "1.15", features = ["v4", "serde"] }
aegis_orchestrator_proto = { version = "0.15.0-pre-alpha", path = "../aegis-proto", package = "aegis-orchestrator-proto" }
tonic = { version = "0.14", features = ["transport"] }
prost = "0.14"
prost-types = "0.14"
tonic-prost = "0.14"
utoipa = { version = "5", features = ["axum_extras", "chrono"] }
utoipa-swagger-ui = { version = "9", features = ["axum"] }
[build-dependencies]
tonic-prost-build = "0.14"
protoc-bin-vendored = "3.0"
[dev-dependencies]
tower = { version = "0.5", features = ["util"] }