Files
lez-programs/programs/amm/client/Cargo.toml
T
Ricardo Guilherme Schmidt a7395aadb7 feat(amm): add reusable client APIs
Add validated shared quote orchestration, canonical planners for every guest instruction, and exact RISC Zero serialization. Expose integer-only slippage preparation and lossless JSON/C adapters without runtime deployment identity checks.
2026-08-10 11:22:44 -03:00

22 lines
557 B
TOML

[package]
name = "amm_client"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[lints]
workspace = true
[dependencies]
amm_core = { path = "../core" }
amm_program = { path = ".." }
clock_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0" }
nssa_core = { workspace = true }
risc0-zkvm = { version = "=3.0.5", default-features = false }
serde = { workspace = true }
serde_json = { workspace = true }
token_core = { workspace = true }
twap_oracle_core = { path = "../../twap_oracle/core" }