Skip to content

Commit

Permalink
chore: use workaround for cargo smart-release not properly ordering…
Browse files Browse the repository at this point in the history
… `dev-`/`build-dependencies` (#1238)

Byron/cargo-smart-release#16
  • Loading branch information
MingweiSamuel authored May 24, 2024
1 parent 0d2f14b commit c9dfddc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions hydro_deploy/hydroflow_plus_cli_integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,8 @@ serde = { version = "1", features = [ "derive" ] }
hydro_deploy = { path = "../core", version = "^0.6.1", optional = true }
async-channel = { version = "1.8.0", optional = true }

# added to workaround `cargo smart-release` https://github.com/Byron/cargo-smart-release/issues/16
stageleft_tool = { path = "../../stageleft_tool", version = "^0.1.1", optional = true }

[build-dependencies]
stageleft_tool = { path = "../../stageleft_tool", version = "^0.1.1" }
3 changes: 3 additions & 0 deletions hydroflow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ tracing = "0.1"
variadics = { path = "../variadics", version = "^0.0.4" }
web-time = "1.1.0"

# added to workaround `cargo smart-release` https://github.com/Byron/cargo-smart-release/issues/16
multiplatform_test = { path = "../multiplatform_test", version = "0.0.0", optional = true }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio = { version = "1.16", features = [ "full" ] }
tokio-util = { version = "0.7.4", features = [ "net", "codec" ] }
Expand Down
3 changes: 3 additions & 0 deletions hydroflow_plus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ bincode = "1.3"
stageleft = { path = "../stageleft", version = "^0.2.1" }
dyn-clone = "1.0.17"

# added to workaround `cargo smart-release` https://github.com/Byron/cargo-smart-release/issues/16
stageleft_tool = { path = "../stageleft_tool", version = "^0.1.1", optional = true }

[build-dependencies]
stageleft_tool = { path = "../stageleft_tool", version = "^0.1.1" }

Expand Down

0 comments on commit c9dfddc

Please sign in to comment.