forked from NSPG13/agent-bounties
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (52 loc) · 1.62 KB
/
Copy pathCargo.toml
File metadata and controls
54 lines (52 loc) · 1.62 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
[workspace]
resolver = "2"
members = [
"crates/domain",
"crates/app",
"crates/ledger",
"crates/risk",
"crates/bounty-router",
"crates/verifier-sdk",
"crates/eval-harness",
"crates/payments-stripe",
"crates/payments-x402",
"crates/cloud-agent",
"crates/chain-base",
"crates/db",
"crates/service-runtime",
"crates/github-app",
"crates/web-public",
"crates/api",
"crates/mcp-server",
"crates/worker",
"crates/cli",
]
[workspace.package]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/agent-bounties/agent-bounties"
rust-version = "1.88"
[workspace.dependencies]
alloy = { version = "=1.6.3", default-features = false, features = ["std", "provider-http", "reqwest-rustls-tls", "rpc-types", "signer-local", "sol-types"] }
anyhow = "1"
async-trait = "0.1"
axum = "0.7"
base64 = "0.23"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4", features = ["derive", "env"] }
hex = "0.4"
hmac = "0.12"
proptest = "1"
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
sha3 = "0.10"
sqlx = { version = "=0.8.6", default-features = false, features = ["runtime-tokio", "tls-rustls-ring-webpki", "postgres", "uuid", "chrono", "json", "macros", "migrate"] }
thiserror = "2"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal", "time"] }
tokio-stream = "0.1"
tower-http = { version = "0.7", features = ["cors", "trace"] }
utoipa = { version = "4", features = ["chrono", "uuid"] }
url = "2"
uuid = { version = "1", features = ["v4", "v5", "serde"] }