Skip to content

Commit

Permalink
fixed naming for format crate
Browse files Browse the repository at this point in the history
  • Loading branch information
JossDuff committed May 10, 2024
1 parent cec3b06 commit cc02016
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions hyperfuel-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ alloy-dyn-abi = "0.5.0"
alloy-json-abi = "0.5.0"
xxhash-rust = { version = "0.8", features = ["xxh3"] }

hyperfuel-net-types = { package = "hyperfuel-net-types-fuel", path = "../hyperfuel-net-types", version = "0.0.3" }
hyperfuel-format = { package = "hyperfuel-format-fuel", path = "../hyperfuel-format", version = "0.0.4" }
hyperfuel-schema = { package = "hyperfuel-schema-fuel", path = "../hyperfuel-schema", version = "0.0.2" }
hyperfuel-net-types = { package = "hyperfuel-net-types", path = "../hyperfuel-net-types", version = "0.0.3" }
hyperfuel-format = { package = "hyperfuel-format", path = "../hyperfuel-format", version = "0.0.4" }
hyperfuel-schema = { package = "hyperfuel-schema", path = "../hyperfuel-schema", version = "0.0.2" }

[dependencies.reqwest]
version = "0.11"
Expand Down
2 changes: 1 addition & 1 deletion hyperfuel-format/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "hyperfuel-format-fuel"
name = "hyperfuel-format"
version = "0.0.4"
edition = "2021"
description = "fuel network format library"
Expand Down
4 changes: 2 additions & 2 deletions hyperfuel-net-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "hyperfuel-net-types-fuel"
name = "hyperfuel-net-types"
version = "0.0.3"
edition = "2021"
description = "hyperfuel types for transport over network"
Expand All @@ -10,7 +10,7 @@ capnp = "0.18"
serde = { version = "1", features = ["derive"] }
arrayvec = { version = "0.7", features = ["serde"] }

hyperfuel-format = { package = "hyperfuel-format-fuel", path = "../hyperfuel-format", version = "0.0.4" }
hyperfuel-format = { package = "hyperfuel-format", path = "../hyperfuel-format", version = "0.0.4" }

[build-dependencies]
capnpc = "0.18"
2 changes: 1 addition & 1 deletion hyperfuel-schema/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "hyperfuel-schema-fuel"
name = "hyperfuel-schema"
version = "0.0.2"
edition = "2021"
description = "schema utilities for hyperfuel"
Expand Down

0 comments on commit cc02016

Please sign in to comment.