Skip to content

Commit

Permalink
Resolve issue with cargo-deny
Browse files Browse the repository at this point in the history
Make sure all crates use the same version
  • Loading branch information
hatchan committed Aug 2, 2024
1 parent 4f0e7e1 commit 9ce4131
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ default-members = ["fpx"]
authors = ["Fiberplane <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/fiberplane/fpx"
version = "0.1.0"

[workspace.dependencies]
anyhow = { version = "1.0" }
Expand Down
4 changes: 2 additions & 2 deletions fpx-lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fpx-lib"
version = "0.1.0"
version = { workspace = true }
edition = "2021"
authors = { workspace = true }
license = { workspace = true }
Expand All @@ -13,7 +13,7 @@ anyhow = { version = "1.0", default-features = false }
async-trait = { version = "0.1", default-features = false }
axum = { version = "0.7", default-features = false, features = ["json"] }
bytes = { version = "1.0", default-features = false }
fpx-macros = { path = "../fpx-macros" }
fpx-macros = { version = "0.1.0", path = "../fpx-macros" }
hex = { version = "0.4", default-features = false, features = ["alloc"] }
http = { version = "1.1", default-features = false }
prost = { version = "0.13", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion fpx-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fpx-macros"
version = "0.1.0"
version = { workspace = true }
edition = "2021"
authors = { workspace = true }
license = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions fpx-workers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fpx-workers"
version = "0.1.0"
version = { workspace = true }
edition = "2021"
authors = { workspace = true }
license = { workspace = true }
Expand All @@ -19,7 +19,7 @@ crate-type = ["cdylib"]
[dependencies]
axum = { version = "0.7", default-features = false }
console_error_panic_hook = { version = "0.1" }
fpx-lib = { path = "../fpx-lib" }
fpx-lib = { version = "0.1.0", path = "../fpx-lib" }
getrandom = { version = "0.2", features = ["js"] } # Required for its feature
time = { version = "0.3", features = ['wasm-bindgen'] }
tower-service = "0.3.2"
Expand Down
2 changes: 1 addition & 1 deletion fpx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fpx"
version = "0.1.0"
version = { workspace = true }
edition = "2021"
authors = { workspace = true }
license = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion xtask/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xtask"
version = "0.1.0"
version = { workspace = true }
edition = "2021"
authors = { workspace = true }
license = { workspace = true }
Expand Down

0 comments on commit 9ce4131

Please sign in to comment.