Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

crane-utils: migrate from toml_edit to toml #533

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
the lint definitions change, and it avoids issues with failing to build
dummified sources which might have violated a lint marked as `deny` or
`forbid`
* `crane-resolve-workspace-inheritance` no longer preserves comments or ordering

### Fixed
* Fixed an edge case with inheriting workspace dependencies where the workspace
Expand Down
28 changes: 27 additions & 1 deletion pkgs/crane-utils/Cargo.lock

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

2 changes: 1 addition & 1 deletion pkgs/crane-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish = false
anyhow = "1"
serde_json = "1"
serde = { version = "1", features = ["derive"] }
toml_edit = "0.22.6"
toml = "0.8.10"

[dev-dependencies]
pretty_assertions = "1.3.0"
2 changes: 1 addition & 1 deletion pkgs/crane-utils/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ rustPlatform.buildRustPackage {

src = lib.sourceFilesBySuffices ./. [ ".rs" ".toml" ".lock" ];

cargoSha256 = "sha256-sRVk7OrdIYaNBU6gA1etLTVWQvS+HW5DwJaa2xbNqiA=";
cargoHash = "sha256-ZP8rFMuW6W+KSdU5OZviCcaZf3uAJZ8ie7ZNOhlZf4c=";
}
Loading