Skip to content

Commit

Permalink
upgrade dependencies except for crates-index (#266)
Browse files Browse the repository at this point in the history
The latter needs the notion of the index not existing, and shouldn't
fetch it by default or else each sanbox run fetches the entire index.
  • Loading branch information
Byron committed Dec 19, 2021
1 parent 0dfe4a7 commit c77c0d6
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 52 deletions.
65 changes: 21 additions & 44 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions cargo-smart-release/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ clap = { version = "=3.0.0-rc.7", features = ["derive", "cargo"] }
env_logger = { version = "0.9.0", default-features = false, features = ["humantime", "termcolor", "atty"] }
cargo_metadata = "0.14.0"
log = "0.4.14"
toml_edit = "0.2.1"
toml_edit = "0.12.0"
semver = "1.0.4"
crates-index = "0.17.0"
cargo_toml = "0.9.2"
cargo_toml = "0.10.2"
nom = { version = "7", default-features = false, features = ["std"]}
git-conventional = "0.10.3"
git-conventional = "0.11.1"
time = "0.3.2"
pulldown-cmark = "0.8.0"
bitflags = "1.3.2"
Expand Down
2 changes: 1 addition & 1 deletion cargo-smart-release/src/command/release/manifest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ fn set_version_and_update_package_dependency(
}
}
}
let new_manifest = doc.to_string_in_original_order();
let new_manifest = doc.to_string();
out.write_all(new_manifest.as_bytes())?;

Ok(manifest != new_manifest)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<details><summary>view details</summary>

* **Uncategorized**
- initial (de05a2d)
- initial (0189fce)
</details>

## v0.8.0 (2021-09-09)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
a = { path = "../a", version ="^0.9.0"}
a = { path = "../a", version = "^0.9.0" }
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
b = { path = "../b", version ="^0.9.0"}
b = { path = "../b", version = "^0.9.0" }
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
a = { path = "../a", version ="^0.8.0"}
a = { path = "../a", version = "^0.8.0" }

0 comments on commit c77c0d6

Please sign in to comment.