fuel-streams-core 0.0.23

Core components for working with streams of Fuel blockchain data
[package]
name = "fuel-streams-core"
description = "Core components for working with streams of Fuel blockchain data"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
keywords.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true

[dependencies]
anyhow.workspace = true
async-nats.workspace = true
async-stream.workspace = true
bytes.workspace = true
dotenvy.workspace = true
fuel-core.workspace = true
fuel-message-broker.workspace = true
fuel-streams-domains.workspace = true
fuel-streams-macros.workspace = true
fuel-streams-store.workspace = true
fuel-streams-types.workspace = true
fuel-tx.workspace = true
fuel-vm.workspace = true
fuel-web-utils.workspace = true
futures.workspace = true
serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
tokio.workspace = true

# these dependencies need to update in the future when fuel-core 0.41.4 is on mainnet
[target.'cfg(target_os = "linux")'.dependencies]
netlink-proto = { version = "=0.11.3", optional = true }

[dev-dependencies]
pretty_assertions.workspace = true
serde_json.workspace = true

[features]
default = []
test-helpers = [
  "fuel-core/test-helpers",
  "fuel-message-broker/test-helpers",
  "fuel-streams-domains/test-helpers",
  "fuel-streams-macros/test-helpers",
  "fuel-streams-store/test-helpers",
  "fuel-streams-types/test-helpers",
]