mirror of
https://github.com/logos-blockchain/lez-programs.git
synced 2026-08-25 14:11:09 +00:00
ff89025 bumped the workspace's nssa/nssa_core to logos-execution-zone v0.2.0 but
missed integration_tests' own directly-pinned clock_core/key_protocol deps, left
on v0.2.0-rc6. That split the dependency graph across two source revisions of
lee_core, so types like NullifierPublicKey stopped unifying across crate
boundaries and integration_tests failed to compile. Bump the two strays to
v0.2.0 to match the rest of the workspace.
24 lines
837 B
TOML
24 lines
837 B
TOML
[package]
|
|
name = "integration_tests"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
nssa = { workspace = true }
|
|
nssa_core = { workspace = true, features = ["host", "test_utils"] }
|
|
clock_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0" }
|
|
key_protocol = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0" }
|
|
amm_core = { workspace = true }
|
|
token_core = { workspace = true }
|
|
ata_core = { workspace = true }
|
|
stablecoin_core = { workspace = true }
|
|
twap_oracle_core = { workspace = true }
|
|
token-methods = { path = "../token/methods" }
|
|
amm-methods = { path = "../amm/methods" }
|
|
ata-methods = { path = "../ata/methods" }
|
|
stablecoin-methods = { path = "../stablecoin/methods" }
|
|
twap-oracle-methods = { path = "../twap_oracle/methods" }
|