-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare open-sourcing (add to README, some clean-up)
This commit adds more text to the README. It also cleans up `Cargo.toml` just a little bit. And it adds license notices to the top of all source code files. Plus, I have run `cargo upgrades` and `cargo update` to update the dependencies. Test Plan: code review and `cargo check && cargo clippy` Reviewers: jacksongabbard, flooey, jozef-mokry Reviewed By: flooey Pull Request: #39
- Loading branch information
Sven Over
authored
May 23, 2022
1 parent
d861447
commit 77a7da0
Showing
25 changed files
with
556 additions
and
254 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 |
---|---|---|
|
@@ -4,8 +4,10 @@ version = "1.2.1" | |
authors = ["Sven Over <[email protected]>", "Jozef Mokry <[email protected]>"] | ||
description = "Submit pull requests for individual, amendable, rebaseable commits to GitHub" | ||
repository = "https://github.com/getcord/spr" | ||
homepage = "https://github.com/getcord/spr" | ||
license = "MIT" | ||
edition = "2021" | ||
exclude = [".github", ".gitignore"] | ||
|
||
[dependencies] | ||
async-compat = "^0.2.1" | ||
|
@@ -14,21 +16,19 @@ async-lock = "^2.4.0" | |
async-process = "^1.3.0" | ||
clap = { version = "^3.0.14", features = ["derive", "wrap_help"] } | ||
console = "^0.15.0" | ||
dialoguer = "^0.9.0" | ||
dialoguer = "^0.10.1" | ||
futures = "^0.3.21" | ||
futures-lite = "^1.12.0" | ||
git2 = "^0.13.25" | ||
git2 = "^0.14.4" | ||
indoc = "^1.0.3" | ||
lazy-regex = "^2.2.2" | ||
octocrab = "^0.15.4" | ||
once_cell = "^1.9.0" | ||
octocrab = "^0.16.0" | ||
serde = "^1.0.136" | ||
textwrap = "0.14.2" | ||
textwrap = "0.15.0" | ||
thiserror = "^1.0.30" | ||
unicode-normalization = "^0.1.19" | ||
graphql_client = "0.10.0" | ||
reqwest = { version = "^0.11", features = ["json"] } | ||
|
||
|
||
[dev-dependencies] | ||
smol = "^1.2.5" |
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,6 +1,6 @@ | ||
The MIT License (MIT) | ||
MIT License | ||
|
||
Copyright (c) 2022 Sven Over <[email protected]> | ||
Copyright (c) Radical HQ Limited | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
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
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
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