diff --git a/Cargo.lock b/Cargo.lock index 950de44..9f9e6da 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -339,7 +339,7 @@ dependencies = [ [[package]] name = "github-webhook" -version = "0.2.3" +version = "0.2.4" dependencies = [ "anyhow", "cargo_metadata", @@ -350,7 +350,7 @@ dependencies = [ [[package]] name = "github-webhook-dts-downloader" -version = "0.2.3" +version = "0.2.4" dependencies = [ "anyhow", "github-webhook-type-generator", @@ -360,7 +360,7 @@ dependencies = [ [[package]] name = "github-webhook-type-generator" -version = "0.2.3" +version = "0.2.4" dependencies = [ "anyhow", "once_cell", diff --git a/Cargo.toml b/Cargo.toml index c941221..82930ba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ members = [ ] [workspace.package] -version = "0.2.3" +version = "0.2.4" repository = "https://github.com/sksat/github-webhook-rs" authors = ["sksat ", "s-ylide"] diff --git a/github-webhook/build.rs b/github-webhook/build.rs index 0d00db6..28b1258 100644 --- a/github-webhook/build.rs +++ b/github-webhook/build.rs @@ -9,6 +9,7 @@ fn main() -> Result<()> { let metadata = MetadataCommand::new() .manifest_path(manifest_dir + "/Cargo.toml") .features(CargoOpt::AllFeatures) + .no_deps() // prevent generate lockfile .exec() .unwrap();