mirror of
https://github.com/logos-blockchain/lez-programs.git
synced 2026-08-25 22:21:16 +00:00
23 lines
620 B
TOML
23 lines
620 B
TOML
[package]
|
|
name = "amm_client"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
alloy-primitives = { version = "1", default-features = false }
|
|
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" }
|