-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
37 lines (33 loc) · 1.04 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
[package]
name = "axonix"
version = "0.2.0"
edition = "2021"
default-run = "axonix"
description = "A coding agent that evolves itself. Born as 200 lines of Rust, growing up in public."
license = "MIT"
repository = "https://github.com/coe07182/axonix"
[dependencies]
yoagent = "0.7.5"
tokio = { version = "1", features = ["full"] }
axum = "0.8"
tower-http = { version = "0.6", features = ["fs", "cors"] }
tokio-stream = { version = "0.1", features = ["sync"] }
serde_yaml = "0.9"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
rusqlite = { version = "0.32", features = ["bundled"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
hmac = "0.12"
sha1 = "0.10"
rand = "0.8"
base64 = "0.22"
[dev-dependencies]
tempfile = "3"
[patch.crates-io]
# Local fork of yoagent with rustls-tls instead of native-tls (OpenSSL).
# OpenSSL is broken in this container environment (SIGSEGV on any TLS init).
yoagent = { path = "vendor/yoagent" }
[profile.release]
opt-level = 2
lto = false
strip = true