Skip to content

Commit

Permalink
chore: update cargo tomls
Browse files Browse the repository at this point in the history
  • Loading branch information
prestwich committed Jun 9, 2024
1 parent 5e3859b commit 4b64d3b
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 26 deletions.
7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@ resolver = "2"

[workspace.package]
version = "0.11.0"
edition = "2021"
rust-version = "1.65"
authors = [
"Summa <team@summa.one>",
"James Prestwich <james@prestwi.ch>",
]
edition = "2021"
repository = "https://github.com/summa-tx/coins"
license = "MIT OR Apache-2.0"
rust-version = "1.65"
homepage = "https://github.com/summa-tx/coins"
repository = "https://github.com/summa-tx/coins"

[workspace.dependencies]
coins-bip32 = { path = "crates/bip32" }
Expand Down
16 changes: 9 additions & 7 deletions crates/bip32/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
[package]
name = "coins-bip32"
categories = ["cryptography::cryptocurrencies"]
keywords = ["bip32", "bitcoin", "cryptocurrency", "blockchain"]
description = "Bip32 in Rust"

version.workspace = true
authors.workspace = true
edition.workspace = true
repository.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true

categories = ["cryptography"]
keywords = ["bip32", "bitcoin", "cryptocurrency", "blockchain"]
description = "Bip32 in Rust"
repository.workspace = true
homepage.workspace = true

[dependencies]
coins-core.workspace = true
Expand All @@ -22,7 +24,7 @@ sha2.workspace = true
thiserror.workspace = true

[dev-dependencies]
hex = "0.4"
hex.workspace = true

[features]
default = ["mainnet"]
Expand Down
16 changes: 11 additions & 5 deletions crates/bip39/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
[package]
name = "coins-bip39"
version = "0.8.7"
description = "BIP39 implementation for coins"
keywords = ["bip39", "coins", "crypto", "wallet"]
categories = ["cryptography::cryptocurrencies"]
authors = [
"Rohit Narurkar <rohit.narurkar@protonmail.com>",
"James Prestwich <james@prestwi.ch>",
"0xYYY <0xYYY@pm.me>",
]
edition = "2018"
description = "Bip39 in Rust"
repository = "https://github.com/summa-tx/coins"
license = "MIT OR Apache-2.0"

version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true


[dependencies]
coins-bip32.workspace = true
Expand Down
15 changes: 10 additions & 5 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
[package]
name = "coins-core"
version = "0.8.7"
authors = ["James Prestwich <james@prestwi.ch>"]
edition = "2018"
categories = ["cryptography::cryptocurrencies"]
keywords = ["bitcoin", "cryptocurrency", "blockchain"]
description = "Core library for coins-bip32 and coins-bip39"
repository = "https://github.com/summa-tx/coins"
license = "MIT OR Apache-2.0"

version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true

[dependencies]
base64.workspace = true
Expand Down
13 changes: 7 additions & 6 deletions crates/ledger/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
[package]
name = "coins-ledger"

version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true

authors = [
"Summa <team@summa.one>",
"James Prestwich <james@prestwi.ch>",
Expand All @@ -15,6 +9,13 @@ categories = ["authentication", "cryptography"]
keywords = ["ledger", "apdu", "cryptocurrency"]
description = "Ledger Nano X/S connection and communication management library"

version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true

[lib]
crate-type = ["cdylib", "rlib"]

Expand Down

0 comments on commit 4b64d3b

Please sign in to comment.