Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
Prepare crates for publishing to `crates.io`
cloudhead committed 2 years ago
commit b456d3a401abf5314598cbede49c4fb2864bdf6f
parent 3bd5589b1a7484c2b72ce98da4054b917c123bf0
6 files changed +30 -22
modified Cargo.lock
@@ -1930,7 +1930,6 @@ dependencies = [
 "qcheck",
 "qcheck-macros",
 "radicle-cob",
-
 "radicle-crdt",
 "radicle-crypto",
 "radicle-git-ext",
 "radicle-ssh",
@@ -1989,7 +1988,7 @@ dependencies = [

[[package]]
name = "radicle-cob"
-
version = "0.1.0"
+
version = "0.2.0"
dependencies = [
 "fastrand",
 "git2",
@@ -2022,7 +2021,7 @@ dependencies = [

[[package]]
name = "radicle-crypto"
-
version = "0.1.0"
+
version = "0.2.0"
dependencies = [
 "amplify",
 "cyphernet 0.2.0",
@@ -2043,7 +2042,7 @@ dependencies = [

[[package]]
name = "radicle-dag"
-
version = "0.1.0"
+
version = "0.2.0"
dependencies = [
 "fastrand",
]
modified radicle-cob/Cargo.toml
@@ -1,16 +1,16 @@
[package]
name = "radicle-cob"
-
version = "0.1.0"
+
description = "Radicle Collaborative Objects library"
+
homepage = "https://radicle.xyz"
+
repository = "https://app.radicle.xyz/seeds/seed.radicle.xyz/rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5"
+
version = "0.2.0"
authors = [
  "Alex Good <alex@memoryandthought.me>",
  "Fintan Halpenny <fintan.halpenny@gmail.com>",
]
edition = "2021"
license = "MIT OR Apache-2.0"
-
description = "Library for implementing Radicle Collaborative Objects"
-
keywords = ["radicle", "collaborative objects", "cob", "cobs"]
-

-
[lib]
+
keywords = ["radicle", "cob", "cobs"]

[dependencies]
fastrand = { version = "1.9.0" }
@@ -27,12 +27,12 @@ features = ["vendored-libgit2"]

[dependencies.radicle-crypto]
path = "../radicle-crypto"
-
version = "0.1"
+
version = "0"
features = ["ssh"]

[dependencies.radicle-dag]
path = "../radicle-dag"
-
version = "0.1"
+
version = "0"

[dependencies.serde]
version = "1.0"
@@ -46,5 +46,5 @@ qcheck-macros = { version = "1", default-features = false }

[dev-dependencies.radicle-crypto]
path = "../radicle-crypto"
-
version = "0.1"
+
version = "0"
features = ["test"]
modified radicle-crypto/Cargo.toml
@@ -1,9 +1,12 @@
[package]
name = "radicle-crypto"
+
description = "Radicle cryptographic primitives"
+
homepage = "https://radicle.xyz"
+
repository = "https://app.radicle.xyz/seeds/seed.radicle.xyz/rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5"
license = "MIT OR Apache-2.0"
-
version = "0.1.0"
+
version = "0.2.0"
authors = [
-
  "Alexis Sellier <alexis@radicle.xyz>",
+
  "cloudhead <cloudhead@radicle.xyz>",
  "Fintan Halpenny <fintan.halpenny@gmail.com>",
]
edition = "2021"
modified radicle-dag/Cargo.toml
@@ -1,6 +1,11 @@
[package]
name = "radicle-dag"
-
version = "0.1.0"
+
description = "Radicle DAG implementation"
+
homepage = "https://radicle.xyz"
+
repository = "https://app.radicle.xyz/seeds/seed.radicle.xyz/rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5"
+
license = "MIT OR Apache-2.0"
+
authors = ["cloudhead <cloudhead@radicle.xyz>"]
+
version = "0.2.0"
edition = "2021"

[dependencies]
modified radicle-ssh/Cargo.toml
@@ -1,11 +1,14 @@
[package]
name = "radicle-ssh"
+
description = "Radicle SSH library"
+
homepage = "https://radicle.xyz"
+
repository = "https://app.radicle.xyz/seeds/seed.radicle.xyz/rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5"
license = "Apache-2.0"
version = "0.2.0"
authors = [
  "Fintan Halpenny <fintan.halpenny@gmail.com>",
  "Pierre-Étienne Meunier <pe@pijul.org>",
-
  "Alexis Sellier <alexis@radicle.xyz>"
+
  "cloudhead <cloudhead@radicle.xyz>"
]
edition = "2021"

modified radicle/Cargo.toml
@@ -1,8 +1,11 @@
[package]
name = "radicle"
+
description = "Radicle standard library"
+
homepage = "https://radicle.xyz"
+
repository = "https://app.radicle.xyz/seeds/seed.radicle.xyz/rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5"
license = "MIT OR Apache-2.0"
version = "0.2.0"
-
authors = ["Alexis Sellier <alexis@radicle.xyz>"]
+
authors = ["cloudhead <cloudhead@radicle.xyz>"]
edition = "2021"

[features]
@@ -61,8 +64,3 @@ qcheck = { version = "1", default-features = false }
path = "../radicle-crypto"
version = "0"
features = ["test"]
-

-
[dev-dependencies.radicle-crdt]
-
path = "../radicle-crdt"
-
version = "0"
-
features = ["test"]