Skip to content

Commit

Permalink
Make crates publishable
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Jul 12, 2020
1 parent 8d34513 commit 5688a34
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 11 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "gitoxide"
description = "A command-line application for interacting with git repositories"
version = "0.1.0"
repository = "https://github.com/Byron/git-oxide"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
publish = false
license = "MIT"
edition = "2018"
license = "MIT"
version = "0.1.0"
default-run = "gio"

[[bin]]
Expand Down
2 changes: 1 addition & 1 deletion etc/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
set -eu -o pipefail

for crate in git-features git-object git-odb git-repository git-transport gitoxide-core .; do
(cd $crate && cargo release)
(cd $crate && cargo release "$@")
done
2 changes: 1 addition & 1 deletion git-features/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "git-features"
description = "A crate to integrate various capabilities using compile-time feature flags"
repository = "https://github.com/Byron/git-oxide"
version = "0.1.0"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
publish = false
license = "MIT"
edition = "2018"

Expand Down
4 changes: 3 additions & 1 deletion git-object/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
[package]
name = "git-object"
version = "0.1.0"
description = "Borrowed and owned git objects with deserialization and serialization support"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
publish = false
repository = "https://github.com/Byron/git-oxide"
license = "MIT"
edition = "2018"

[lib]
Expand Down
3 changes: 2 additions & 1 deletion git-odb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[package]
name = "git-odb"
version = "0.1.0"
repository = "https://github.com/Byron/git-oxide"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
publish = false
description = "Implements a git object database for loose objects and packs"
edition = "2018"

[lib]
Expand Down
4 changes: 3 additions & 1 deletion git-repository/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
[package]
name = "git-repository"
repository = "https://github.com/Byron/git-oxide"
description = "Manipulation of git repositories"
license = "MIT"
version = "0.1.0"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
publish = false
edition = "2018"

[lib]
Expand Down
4 changes: 2 additions & 2 deletions git-transport/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "git-transport"
version = "0.0.0"
repository = "https://github.com/Byron/git-oxide"
description = "A WIP crate of the gitoxide project dedicated to implementing the git transport layer"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
edition = "2018"
description = "A WIP crate of the gitoxide project"
publish = false

[lib]
doctest = false
Expand Down
2 changes: 1 addition & 1 deletion gitoxide-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "gitoxide-core"
description = "The library implementating all capabilities of the gitoxide CLI"
repository = "https://github.com/Byron/git-oxide"
version = "0.1.0"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
publish = false
license = "MIT"
edition = "2018"

Expand Down

0 comments on commit 5688a34

Please sign in to comment.