Skip to content

Commit

Permalink
basic understanding and implementations
Browse files Browse the repository at this point in the history
  • Loading branch information
Pistonight committed Nov 23, 2023
1 parent d4dd7a4 commit e7ba980
Show file tree
Hide file tree
Showing 10 changed files with 1,592 additions and 94 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/target
/temp
240 changes: 240 additions & 0 deletions Cargo.lock

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

19 changes: 12 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,25 @@
[package]
name = "magoo"
version = "0.0.0"
version = "0.0.1"
edition = "2021"
description = "A wrapper for git submodule that simplifies the workflows"
repository = "https://github.com/Pistonite/magoo"
license = "MIT"
authors = ["Pistonight <[email protected]>"]
keywords = ["git", "tool", "submodule"]
categories = ["development-tools"]
# description = "A wrapper for git submodule that simplifies the workflows"
# repository = "https://github.com/Pistonite/magoo"
# license = "MIT"
# authors = ["Pistonight <[email protected]>"]
# keywords = ["git", "tool", "submodule"]
# categories = ["development-tools"]
exclude = [
".github/**/*",
"Taskfile.yml"
]

[dependencies]
clap = { version = "4.4.8", features = ["derive"], optional = true }
pathdiff = "0.2.1"
termcolor = "1.4.0"
termsize = "0.1.6"
thiserror = "1.0.50"
which = "5.0.0"

[features]
default = ["cli"]
Expand Down
Loading

0 comments on commit e7ba980

Please sign in to comment.