-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Matt Pruitt
authored
Jun 27, 2021
1 parent
c6af15f
commit 97244d1
Showing
6 changed files
with
18 additions
and
15 deletions.
There are no files selected for viewing
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
|
@@ -35,7 +35,7 @@ scoop install smaug | |
# Usage | ||
|
||
``` | ||
smaug 0.3.1 | ||
smaug 0.3.2 | ||
Matt Pruitt <[email protected]> | ||
Create games and share packages with the DragonRuby community | ||
|
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 @@ | ||
[package] | ||
name = "smaug-cli" | ||
version = "0.3.1" | ||
version = "0.3.2" | ||
authors = ["Matt Pruitt <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -12,16 +12,16 @@ path = "src/main.rs" | |
|
||
|
||
[dependencies] | ||
smaug = { path = "../smaug" } | ||
smaug = { path="../smaug" } | ||
|
||
clap = "3.0.0-beta.2" | ||
derive_more = "0.99.11" | ||
log = "0.4" | ||
open = "1.7.0" | ||
question = "0.2.2" | ||
reqwest = { version = "0.11", features = ["blocking", "json"] } | ||
reqwest = { version="0.11", features=["blocking", "json"] } | ||
rm_rf = "0.6.1" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde = { version="1.0", features=["derive"] } | ||
serde_json = "1.0" | ||
stderrlog = "0.5" | ||
tinytemplate = "1.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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ use log::*; | |
|
||
fn main() { | ||
let matches = clap_app!(smaug => | ||
(version: "0.3.1") | ||
(version: "0.3.2") | ||
(author: "Matt Pruitt <[email protected]>") | ||
(about: "Create games and share packages with the DragonRuby community") | ||
(setting: clap::AppSettings::SubcommandRequiredElseHelp) | ||
|
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 @@ | ||
[package] | ||
name = "smaug" | ||
version = "0.3.1" | ||
version = "0.3.2" | ||
authors = ["Matt Pruitt <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -12,16 +12,16 @@ derive_more = "0.99.11" | |
directories = "3.0.1" | ||
git2 = "0.13" | ||
ignore = "0.4.17" | ||
linked-hash-map = { version = "0.5.4", features = ["serde_impl"] } | ||
linked-hash-map = { version="0.5.4", features=["serde_impl"] } | ||
log = "0.4" | ||
regex = "1" | ||
relative-path = { version = "1.3.2", features = ["serde"] } | ||
reqwest = { version = "0.11", features = ["blocking", "json"] } | ||
relative-path = { version="1.3.2", features=["serde"] } | ||
reqwest = { version="0.11", features=["blocking", "json"] } | ||
rm_rf = "0.6.1" | ||
semver = { version = "0.11", features = ["serde"] } | ||
serde = { version = "1.0", features = ["derive"] } | ||
semver = { version="0.11", features=["serde"] } | ||
serde = { version="1.0", features=["derive"] } | ||
shellexpand = "2.1" | ||
toml = { version = "0.5.8", features = ["preserve_order"] } | ||
toml = { version="0.5.8", features=["preserve_order"] } | ||
url = "2.2.0" | ||
walkdir = "2" | ||
zip = "0.5" | ||
|