Radish alpha
r
Git libraries for Radicle
Radicle
Git (anonymous pull)
Log in to clone via SSH
git-ref-format: prepare git-ref-format crates for publishing
Fintan Halpenny committed 3 years ago
commit 1c8a501be12305677e682aecc4e928273efa62d9
parent 4f6284caf589fd7bda312fa1452a0976d5adb8a2
3 files changed +9 -0
modified git-ref-format/Cargo.toml
@@ -4,6 +4,8 @@ version = "0.1.0"
authors = ["Kim Altintop <kim@eagain.st>"]
edition = "2018"
license = "GPL-3.0-or-later"
+
description = "Everything you never knew you wanted for handling git ref names."
+
keywords = ["git", "references"]

[lib]
doctest = false
@@ -18,8 +20,10 @@ percent-encoding = ["git-ref-format-core/percent-encoding"]
serde = ["git-ref-format-core/serde"]

[dependencies.git-ref-format-core]
+
version = "0.1.0"
path = "./core"

[dependencies.git-ref-format-macro]
+
version = "0.1.0"
path = "./macro"
optional = true
modified git-ref-format/core/Cargo.toml
@@ -4,6 +4,8 @@ version = "0.1.0"
authors = ["Kim Altintop <kim@eagain.st>"]
edition = "2018"
license = "GPL-3.0-or-later"
+
description = "Core types for the git-ref-format crate"
+
keywords = ["git", "references"]

[lib]
doctest = false
modified git-ref-format/macro/Cargo.toml
@@ -4,6 +4,8 @@ version = "0.1.0"
authors = ["Kim Altintop <kim@eagain.st>"]
edition = "2018"
license = "GPL-3.0-or-later"
+
description = "Macros for the git-ref-format crate"
+
keywords = ["git", "references"]

[lib]
doctest = false
@@ -16,4 +18,5 @@ quote = "1"
syn = "1"

[dependencies.git-ref-format-core]
+
version = "0.1.0"
path = "../core"