-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathCargo.toml
More file actions
103 lines (98 loc) · 2.25 KB
/
Cargo.toml
File metadata and controls
103 lines (98 loc) · 2.25 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
[workspace]
resolver = "2"
members = [
"anda_cli",
"anda_core",
"anda_engine",
"anda_engine_server",
"anda_web3_client",
]
[workspace.package]
version = "0.11.0"
description = "Anda is an AI agent framework built with Rust, powered by ICP and TEEs."
repository = "https://github.com/ldclabs/anda"
homepage = "https://github.com/ldclabs/anda"
keywords = ["ai-agent", "icp", "tee"]
categories = [
"accessibility",
"web-programming",
"development-tools",
"text-processing",
]
edition = "2024"
license = "MIT OR Apache-2.0"
[workspace.dependencies]
axum = { version = "0.8", features = [
"http1",
"http2",
"json",
# "macros",
"matched-path",
"tokio",
"query",
], default-features = true }
async-trait = "0.1"
anda_db = { version = "0.7", features = ["full"] }
anda_db_tfs = { version = "0.5", features = ["full"] }
anda_cognitive_nexus = "0.7"
anda_db_schema = "0.4"
anda_kip = "0.7"
arc-swap = "1.9"
bytes = "1"
base64 = "0.22"
candid = "0.10"
ciborium = "0.2"
chrono = "0.4"
encoding_rs = "0.8"
futures = "0.3"
futures-util = "0.3"
http = "1.3"
mime = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" }
serde_bytes = "0.11"
ic_cose_types = "0.9"
ic_cose = "0.9"
ic-oss-types = "1.2"
ic-agent = "0.47"
ic_auth_types = "0.8"
ic_auth_verifier = "0.8"
ic_tee_cdk = "0.6"
ic_tee_agent = "0.6"
ic_tee_gateway_sdk = "0.6"
infer2 = "0.21"
anda_cloud_cdk = "0.4"
object_store = { version = "0.13" }
parking_lot = "0.12"
tokio-util = "0.7"
tokio = { version = "1", features = ["full"] }
structured-logger = "1"
rand = "0.10"
reqwest = { version = "0.13", features = [
"rustls",
"json",
"gzip",
"stream",
"http2",
# "hickory-dns",
], default-features = true }
thiserror = "2"
moka = { version = "0.12", features = ["future"] }
log = { version = "0.4", features = ["kv_serde"] }
dotenv = "0.15"
schemars = { version = "1.0" }
clap = { version = "4.5", features = ["derive", "env"] }
idna = "1.0" # https://github.com/ldclabs/anda/security/dependabot/1
url = "2.5"
hex = "0.4"
tower-http = { version = "0.6", features = ["compression-gzip"] }
glob = "0.3"
serde-saphyr = "0.0"
[patch.crates-io]
[workspace.metadata.cargo-shear]
ignored = ["idna", "serde_bytes"]
[profile.release]
debug = false
lto = true
strip = true
opt-level = 's'