mirror of
https://github.com/logos-blockchain/lez-programs.git
synced 2026-07-16 20:09:36 +00:00
Replace prototype data and floating-point quotes with live wallet and chain reads, exact Rust quote planning, and optimistic external-wallet submission. Add canonical display-order mapping, responsive QML states, network-scoped program configuration, and packaged Rust client support.
25 lines
624 B
TOML
25 lines
624 B
TOML
[package]
|
|
name = "amm_client"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
alloy-primitives = { version = "1", default-features = false }
|
|
amm_core = { workspace = true }
|
|
borsh = { workspace = true }
|
|
clock_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc6" }
|
|
hex = "0.4"
|
|
nssa_core = { workspace = true }
|
|
risc0-zkvm = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
sha2 = "0.10"
|
|
token_core = { workspace = true }
|
|
twap_oracle_core = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1"
|