Skip to content

Commit

Permalink
Update cargo manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
sgreenbury committed Jan 27, 2025
1 parent 5c8d761 commit 5a834ef
Show file tree
Hide file tree
Showing 7 changed files with 48 additions and 16 deletions.
16 changes: 12 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
[package]
name = "trustchain"
version = "0.2.0"
authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
description = "Trustchain decentralised PKI reference implementation."

[workspace]
members = ["crates/*"]
resolver = "2"

[workspace.package]
authors = ["Trustchain Devs"]
license = "MIT OR Apache-2.0"
description = "Trustchain decentralised PKI reference implementation."
Expand All @@ -9,10 +21,6 @@ repository = "https://github.com/alan-turing-institute/trustchain/"
keywords = ["pki", "did", "vc", "vp"]
edition = "2021"

[workspace]
members = ["crates/*"]
resolver = "2"

[workspace.dependencies]
anyhow = "1.0"
async-trait = "0.1"
Expand Down
8 changes: 6 additions & 2 deletions crates/trustchain-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
[package]
name = "trustchain-api"
version = "0.1.0"
authors = ["Trustchain Devs"]
edition = "2021"
authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
description = "API for Trustchain."

[dependencies]

Expand Down
8 changes: 6 additions & 2 deletions crates/trustchain-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
[package]
name = "trustchain-cli"
version = "0.1.0"
authors = ["Trustchain Devs"]
edition = "2021"
authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
description = "CLI for Trustchain."

[[bin]]
name = "trustchain-cli"
Expand Down
8 changes: 6 additions & 2 deletions crates/trustchain-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
[package]
name = "trustchain-core"
version = "0.2.0"
authors = ["Trustchain Devs"]
edition = "2021"
authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
description = "Core Trustchain functionality."

[dependencies]
async-trait = { workspace = true }
Expand Down
8 changes: 6 additions & 2 deletions crates/trustchain-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
[package]
name = "trustchain-ffi"
version = "0.1.0"
authors = ["Trustchain Devs"]
edition = "2021"
authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
description = "FFI for Trustchain."

[lib]
crate-type = ["cdylib", "staticlib", "lib"]
Expand Down
8 changes: 6 additions & 2 deletions crates/trustchain-http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
[package]
name = "trustchain-http"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
description = "HTTP Trustchain library and application."

[[bin]]
name = "trustchain-http"
Expand Down
8 changes: 6 additions & 2 deletions crates/trustchain-ion/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
[package]
name = "trustchain-ion"
version = "0.2.0"
authors = ["Trustchain Devs"]
edition = "2021"
authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
description = "Trustchain implementation for ION DID method."

[dependencies]
anyhow = { workspace = true }
Expand Down

0 comments on commit 5a834ef

Please sign in to comment.