Files
lez-programs/programs/stablecoin/methods/guest/Cargo.toml
T

26 lines
785 B
TOML
Raw Normal View History

[package]
name = "stablecoin-guest"
version = "0.1.0"
edition = "2021"
[workspace]
2026-06-28 18:41:49 -03:00
[profile.release]
debug = 0
strip = "symbols"
[[bin]]
name = "stablecoin"
path = "src/bin/stablecoin.rs"
[dependencies]
spel-framework = { git = "https://github.com/logos-co/spel.git", tag = "v0.6.0", package = "spel-framework" }
nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0", package = "lee_core" }
risc0-zkvm = { version = "=3.0.5", default-features = false }
twap_oracle_core = { path = "../../../twap_oracle/core" }
stablecoin_core = { path = "../../core" }
stablecoin_program = { path = "../..", package = "stablecoin_program" }
2026-05-11 17:14:27 -03:00
token_core = { path = "../../../token/core" }
serde = { version = "1.0", features = ["derive"] }
borsh = "1.5"