diff --git a/Cargo.lock b/Cargo.lock index 6ca7d8e..49f0d43 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -254,14 +254,25 @@ dependencies = [ "log", ] +[[package]] +name = "dinghy-build" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26c558f521651a8e62f79b79e591e18661aaa27c18170a2186dc635e51e27cf4" +dependencies = [ + "anyhow", + "cc", + "log", +] + [[package]] name = "dinghy-lib" -version = "0.7.2-pre" +version = "0.7.2" dependencies = [ "anyhow", "cargo_metadata", "colored", - "dinghy-build", + "dinghy-build 0.7.2 (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 f81f1a6..383f717 100644 --- a/cargo-dinghy/Cargo.toml +++ b/cargo-dinghy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-dinghy" -version = "0.7.2-pre" +version = "0.7.2" 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.7.2" log = "0.4" clap = { version = "4", features = ["derive"] } env_logger = "0.10"