Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: cargo category slugs #211

Merged
merged 2 commits into from
Apr 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions anychain-bitcoin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "anychain-bitcoin"
description = "A Rust library for Bitcoin-focused cryptocurrency wallets, enabling seamless transactions on the Bitcoin blockchain"
version = "0.1.5"
keywords = ["bitcoin", "blockchain", "cryptocurrency", "wallet", "transactions"]
version = "0.1.6"
keywords = ["bitcoin", "blockchain", "cryptography::cryptocurrencies", "wallet", "transactions"]

# Workspace inherited keys
authors = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion anychain-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "anychain-core"
version = "0.1.4"
description = "A core support for cryptocurrency wallets"
categories = ["command-line-utilities", "crypto-currency"]
categories = ["command-line-utilities", "cryptography::cryptocurrencies"]
keywords = ["bitcoin", "blockchain", "ethereum", "no_std"]
readme = "README.md"

Expand Down
2 changes: 1 addition & 1 deletion anychain-ethereum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "anychain-ethereum"
description = "A Rust library for Ethereum-focused cryptocurrency wallets, enabling seamless transactions on the Ethereum blockchain"
version = "0.1.11"
keywords = ["blockchain", "crypto", "cryptocurrency", "ethereum", "wallet"]
keywords = ["blockchain", "crypto", "cryptography::cryptocurrencies", "ethereum", "wallet"]

# Workspace inherited keys
authors = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion anychain-filecoin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "anychain-filecoin"
description = "A Rust library for Filecoin-focused cryptocurrency wallets, enabling seamless transactions on the Filecoin blockchain"
version = "0.1.6"
keywords = ["filecoin", "blockchain", "cryptocurrency", "wallet", "transactions"]
keywords = ["filecoin", "blockchain", "cryptography::cryptocurrencies", "wallet", "transactions"]

# Workspace inherited keys
authors = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion anychain-polkadot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "anychain-polkadot"
description = "A Rust library for Polkadot cryptocurrency wallets, enabling seamless transactions on the Polkadot blockchain"
version = "0.1.2"
keywords = ["polkadot", "blockchain", "cryptocurrency", "wallet", "transactions"]
keywords = ["polkadot", "blockchain", "cryptography::cryptocurrencies", "wallet", "transactions"]

# Workspace inherited keys
authors = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion anychain-ripple/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "anychain-ripple"
description = "A Rust library for interacting with the Ripple blockchain. It provides core functionalities such as transaction signing and serialization, address generation, and network communication."
version = "0.1.6"
keywords = ["ripple", "blockchain", "cryptocurrency", "wallet", "transactions"]
keywords = ["ripple", "blockchain", "cryptography::cryptocurrencies", "wallet", "transactions"]

# Workspace inherited keys
authors = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion anychain-tron/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "anychain-tron"
description = "A Rust library for Tron-focused cryptocurrency wallets, enabling seamless transactions on the Tron blockchain"
version = "0.2.1"
keywords = ["tron", "blockchain", "cryptocurrency", "wallet", "transactions"]
keywords = ["tron", "blockchain", "cryptography::cryptocurrencies", "wallet", "transactions"]

# Workspace inherited keys
authors = { workspace = true }
Expand Down
Loading