lez-programs/Cargo.toml

42 lines
1.2 KiB
TOML
Raw Permalink Normal View History

[workspace]
members = [
"token/core",
"token",
"token/methods",
"amm/core",
"amm",
"amm/methods",
"ata/core",
"ata",
"ata/methods",
"stablecoin/core",
"stablecoin",
"stablecoin/methods",
"integration_tests",
"tools/idl-gen",
]
exclude = [
"token/methods/guest",
"amm/methods/guest",
"ata/methods/guest",
"stablecoin/methods/guest",
]
resolver = "2"
[workspace.dependencies]
2026-05-11 15:29:41 +02:00
nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3", features = ["host"] }
nssa = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3", features = ["test-utils"] }
token_core = { path = "token/core" }
token_program = { path = "token" }
amm_core = { path = "amm/core" }
amm_program = { path = "amm" }
ata_core = { path = "ata/core" }
ata_program = { path = "ata" }
stablecoin_core = { path = "stablecoin/core" }
stablecoin_program = { path = "stablecoin" }
serde = { version = "1.0", features = ["derive"] }
borsh = { version = "1.0", features = ["derive"] }
risc0-zkvm = { version = "=3.0.5" }
serde_json = "1.0"
tokio = { version = "1.28.2", features = ["net", "rt-multi-thread", "sync", "macros"] }