2026-01-24 04:05:59 +03:00
|
|
|
[package]
|
|
|
|
|
name = "indexer_service_protocol"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2024"
|
2026-01-31 23:13:36 +04:00
|
|
|
license = { workspace = true }
|
2026-01-24 04:05:59 +03:00
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
nssa_core = { workspace = true, optional = true, features = ["host"] }
|
|
|
|
|
nssa = { workspace = true, optional = true }
|
|
|
|
|
common = { workspace = true, optional = true }
|
|
|
|
|
|
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
|
schemars.workspace = true
|
|
|
|
|
base64.workspace = true
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
# Enable conversion to/from NSSA core types
|
2026-02-11 22:00:29 +03:00
|
|
|
convert = ["dep:nssa_core", "dep:nssa", "dep:common"]
|