Skip to content

Commit

Permalink
Introduce fuel-core-interfacing-types
Browse files Browse the repository at this point in the history
  • Loading branch information
Jurshsmith committed Jan 14, 2025
1 parent da70602 commit 00d28e6
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,5 @@ thiserror = "2.0"

# Workspace members
fuel-core-interfacing = { path = "crates/fuel-core-interfacing" }
fuel-core-interfacing-types = { path = "crates/fuel-core-interfacing-types" }
fuel-data-nats = { path = "crates/fuel-data-nats" }
49 changes: 49 additions & 0 deletions crates/fuel-core-interfacing-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
[package]
name = "fuel-core-interfacing-types"
description = "Types for integrating fuel client node"
authors = { workspace = true }
keywords = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
version = { workspace = true }
rust-version = { workspace = true }
publish = false

[dependencies]
anyhow = { workspace = true }
async-nats = { workspace = true }
async-trait = { workspace = true }
chrono = { workspace = true }
clap = { workspace = true }
derive_more = { version = "1.0", features = ["full"] }
displaydoc = { workspace = true }
dotenvy = { workspace = true }
fuel-core = { workspace = true }
fuel-core-bin = { workspace = true }
fuel-core-client = { workspace = true }
fuel-core-importer = { workspace = true }
fuel-core-services = { workspace = true }
fuel-core-storage = { workspace = true }
fuel-core-types = { workspace = true }
futures = { workspace = true }
num_cpus = "1.16"
parking_lot = { version = "0.12", features = ["serde"] }
prometheus = { version = "0.13", features = ["process"] }
rand = { workspace = true }
rayon = "1.10.0"
rust_decimal = { version = "1.13" }
serde = { workspace = true }
serde_json = { workspace = true }
serde_prometheus = { version = "0.2" }
sha2 = { workspace = true }
thiserror = "2.0"
tokio = { workspace = true }
tracing = { workspace = true }
url = "2.5"


[features]
default = []
test-helpers = []
1 change: 1 addition & 0 deletions crates/fuel-core-interfacing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ fuel-core-importer = { workspace = true }
fuel-core-services = { workspace = true }
fuel-core-storage = { workspace = true }
fuel-core-types = { workspace = true }
fuel-core-interfacing-types = { workspace = true }
futures = { workspace = true }
num_cpus = "1.16"
parking_lot = { version = "0.12", features = ["serde"] }
Expand Down

0 comments on commit 00d28e6

Please sign in to comment.