Prepare crates for publishing to `crates.io`

This commit is contained in:
cloudhead 2023-08-07 11:23:19 +02:00
parent 3bd5589b1a
commit b456d3a401
No known key found for this signature in database
6 changed files with 30 additions and 22 deletions

7
Cargo.lock generated
View File

@ -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",
]

View File

@ -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"]

View File

@ -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"

View File

@ -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]

View File

@ -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"

View File

@ -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"]