mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-07-10 07:50:11 +00:00
BREAKING CHANGE: dropping the serde rename attrs changes the FFI `query_status` JSON: `state` values are now variant-cased (`caught_up` -> `CaughtUp`) and fields snake_case (`indexedBlockId` -> `indexed_block_id`, `lastError` -> `last_error`). Consumers (lez-indexer-module, lez-explorer-ui) must update their parsing.
27 lines
693 B
TOML
27 lines
693 B
TOML
[package]
|
|
name = "indexer_service_protocol"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
lee_core = { workspace = true, optional = true, features = ["host"] }
|
|
lee = { workspace = true, optional = true }
|
|
common = { workspace = true, optional = true }
|
|
indexer_core = { workspace = true, optional = true }
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_with.workspace = true
|
|
schemars.workspace = true
|
|
base64.workspace = true
|
|
base58.workspace = true
|
|
hex.workspace = true
|
|
anyhow.workspace = true
|
|
|
|
[features]
|
|
# Enable conversion to/from LEE core types
|
|
convert = ["dep:lee_core", "dep:lee", "dep:common", "dep:indexer_core"]
|