-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 1.06 KB
/
Copy pathCargo.toml
File metadata and controls
38 lines (35 loc) · 1.06 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
[workspace]
resolver = "2"
members = [
"crates/ilold-cli",
"crates/ilold-web",
"crates/ilold-session-core",
"crates/ilold-solana-core",
"crates/ilold-mcp",
"crates/ilold-help",
"crates/ilold-render",
]
[workspace.package]
edition = "2024"
version = "0.1.0"
authors = ["scab24 <git.seco@protonmail.com>"]
license = "AGPL-3.0-only"
repository = "https://github.com/scab24/ilold"
homepage = "https://github.com/scab24/ilold"
description = "Solana program execution path analyzer and interactive security workbench"
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
anyhow = "1"
clap = { version = "4", features = ["derive", "env"] }
tokio = { version = "1", features = ["full"] }
axum = { version = "0.8", features = ["ws"] }
tower-http = { version = "0.6", features = ["cors", "fs"] }
rmcp = { version = "1.6", features = ["server", "transport-io"] }
schemars = "1.2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[profile.release]
lto = "thin"
codegen-units = 1