lez-programs/Cargo.toml

31 lines
986 B
TOML
Raw Permalink Normal View History

[workspace]
members = [
"token/token_core",
"token",
"token/methods",
"amm/amm_core",
"amm",
"amm/methods",
]
exclude = [
"token/methods/guest",
"amm/methods/guest",
]
resolver = "2"
[workspace.dependencies]
nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", features = ["host"] }
nssa = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", features = ["test-utils"] }
token_core = { path = "token/token_core" }
token_program = { path = "token" }
amm_core = { path = "amm/amm_core" }
amm_program = { path = "amm" }
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"] }
[patch."https://github.com/logos-blockchain/lssa.git"]
nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git" }