Radish alpha
r
rad:z6cFWeWpnZNHh9rUW8phgA3b5yGt
Git libraries for Radicle
Radicle
Git
Merge remote-tracking branch 'origin/publish/git-ref-format'
Fintan Halpenny committed 3 years ago
commit 80d8e0e0584ab0513775ca4606cd057cb9c98603
parent 4f6284c
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"