diff --git a/Cargo.lock b/Cargo.lock index e66e05a..c82837e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -252,14 +252,25 @@ dependencies = [ "log", ] +[[package]] +name = "dinghy-build" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2c324c6e34b69150f253d1822aa650b3a9846634966e1a17169d7d9bd33a6aa" +dependencies = [ + "anyhow", + "cc", + "log", +] + [[package]] name = "dinghy-lib" -version = "0.7.4-pre" +version = "0.8.0" dependencies = [ "anyhow", "cargo_metadata", "colored", - "dinghy-build", + "dinghy-build 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "dirs", "dyn-clone", "filetime", diff --git a/cargo-dinghy/Cargo.toml b/cargo-dinghy/Cargo.toml index 96c500f..068642f 100644 --- a/cargo-dinghy/Cargo.toml +++ b/cargo-dinghy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-dinghy" -version = "0.7.4-pre" +version = "0.8.0" authors = ["Mathieu Poumeyrol ", "Thibaut Lorrain "] license = "MIT/Apache-2.0" description = "Cross-compilation made easier" @@ -17,7 +17,7 @@ edition = "2021" travis-ci = { repository = "sonos/dinghy" } [dependencies] -dinghy-lib = { path = "../dinghy-lib" } +dinghy-lib = "0.8.0" log = "0.4" clap = { version = "4", features = ["derive"] } env_logger = "0.10"