-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to the 2021 edition of Rust & fix issues
* Update to the 2021 edition * Fix some typos * Remove some unnecessary referencing * Update version to 0.7.0
- Loading branch information
Showing
15 changed files
with
295 additions
and
284 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
[package] | ||
name = "autorebase" | ||
version = "0.6.0" | ||
authors = ["Tim Hutt <timh@graphcore.ai>"] | ||
edition = "2018" | ||
license = "MIT" | ||
authors = [ "Tim Hutt <timh@graphcore.ai>" ] | ||
description = "Automatically rebase feature branches onto master" | ||
keywords = ["git", "rebase"] | ||
edition = "2021" | ||
keywords = [ "git", "rebase" ] | ||
license = "MIT" | ||
name = "autorebase" | ||
repository = "https://github.com/Timmmm/autorebase" | ||
version = "0.7.0" | ||
|
||
[dependencies] | ||
anyhow = "1.0.40" | ||
argh = "0.1.4" | ||
colored = "2.0.0" | ||
env_logger = "0.10.0" | ||
anyhow = "1.0.86" | ||
argh = "0.1.12" | ||
colored = "2.1.0" | ||
env_logger = "0.11.3" | ||
git_commands = { path = "git_commands", version = "0.2.0" } | ||
itertools = "0.11.0" | ||
log = "0.4.14" | ||
serde = { version = "1.0", features = ["derive"] } | ||
toml = "0.7.6" | ||
itertools = "0.13.0" | ||
log = "0.4.22" | ||
serde = { version = "1.0", features = [ "derive" ] } | ||
toml = "0.8.14" | ||
|
||
[dev-dependencies] | ||
# For tests | ||
tempfile = "3.1.0" | ||
rand = "0.8.3" | ||
rand = "0.8.5" | ||
tempfile = "3.10.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.