lez-programs/Cargo.toml
Ricardo Guilherme Schmidt 8f85b06a99
feat(oracle): add mock oracle feed program
Add shared oracle_core price-feed types and account-backed validation.

Wire stablecoin to re-export the shared oracle interface and add the mock_oracle program plus IDL artifact.

Update ATA integration tests for the current Transfer instruction shape.

Refs #96
2026-05-14 01:24:57 -03:00

50 lines
1.5 KiB
TOML

[workspace]
members = [
"token/core",
"token",
"token/methods",
"amm/core",
"amm",
"amm/methods",
"ata/core",
"ata",
"ata/methods",
"oracle/core",
"stablecoin/core",
"stablecoin",
"stablecoin/methods",
"mock_oracle/core",
"mock_oracle",
"mock_oracle/methods",
"integration_tests",
"tools/idl-gen",
]
exclude = [
"token/methods/guest",
"amm/methods/guest",
"ata/methods/guest",
"stablecoin/methods/guest",
"mock_oracle/methods/guest",
]
resolver = "2"
[workspace.dependencies]
nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3", features = ["host"] }
nssa = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3", features = ["test-utils"] }
token_core = { path = "token/core" }
token_program = { path = "token" }
amm_core = { path = "amm/core" }
amm_program = { path = "amm" }
ata_core = { path = "ata/core" }
ata_program = { path = "ata" }
oracle_core = { path = "oracle/core" }
stablecoin_core = { path = "stablecoin/core" }
stablecoin_program = { path = "stablecoin" }
mock_oracle_core = { path = "mock_oracle/core" }
mock_oracle_program = { path = "mock_oracle" }
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"] }