From 00047392a69d1b47a3b943dfb3d2a281b0734a24 Mon Sep 17 00:00:00 2001 From: aspect Date: Wed, 24 Jan 2024 16:30:05 +0200 Subject: [PATCH] Changes applied during crate publishing (#409) * Add package.repository.workspace = true to all manifests * fix missing kaspa-metrics-core package.description * kos version update --- Cargo.lock | 2 +- cli/Cargo.toml | 4 +++- components/addressmanager/Cargo.toml | 1 + components/connectionmanager/Cargo.toml | 1 + components/consensusmanager/Cargo.toml | 1 + consensus/Cargo.toml | 1 + consensus/core/Cargo.toml | 1 + consensus/notify/Cargo.toml | 1 + consensus/pow/Cargo.toml | 2 +- consensus/wasm/Cargo.toml | 1 + core/Cargo.toml | 1 + crypto/addresses/Cargo.toml | 1 + crypto/hashes/Cargo.toml | 1 + crypto/merkle/Cargo.toml | 1 + crypto/muhash/Cargo.toml | 1 + crypto/txscript/Cargo.toml | 1 + crypto/txscript/errors/Cargo.toml | 3 ++- daemon/Cargo.toml | 1 + database/Cargo.toml | 1 + indexes/core/Cargo.toml | 1 + indexes/processor/Cargo.toml | 1 + indexes/utxoindex/Cargo.toml | 1 + kaspad/Cargo.toml | 1 + kos/Cargo.toml | 4 ++-- math/Cargo.toml | 1 + metrics/core/Cargo.toml | 2 ++ metrics/perf_monitor/Cargo.toml | 1 + mining/Cargo.toml | 1 + mining/errors/Cargo.toml | 1 + notify/Cargo.toml | 1 + protocol/flows/Cargo.toml | 1 + protocol/p2p/Cargo.toml | 1 + rothschild/Cargo.toml | 1 + rpc/core/Cargo.toml | 1 + rpc/grpc/client/Cargo.toml | 1 + rpc/grpc/core/Cargo.toml | 1 + rpc/grpc/server/Cargo.toml | 1 + rpc/macros/Cargo.toml | 1 + rpc/service/Cargo.toml | 1 + rpc/wrpc/client/Cargo.toml | 1 + rpc/wrpc/proxy/Cargo.toml | 1 + rpc/wrpc/server/Cargo.toml | 1 + rpc/wrpc/wasm/Cargo.toml | 1 + simpa/Cargo.toml | 1 + testing/integration/Cargo.toml | 1 + utils/Cargo.toml | 1 + utils/alloc/Cargo.toml | 1 + utils/tower/Cargo.toml | 1 + wallet/bip32/Cargo.toml | 1 + wallet/core/Cargo.toml | 2 ++ wallet/macros/Cargo.toml | 1 + wallet/native/Cargo.toml | 1 + wallet/wasm/Cargo.toml | 1 + 53 files changed, 59 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7885ea3752..8dfafdba16 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2713,7 +2713,7 @@ dependencies = [ [[package]] name = "kaspa-os" -version = "0.0.2" +version = "0.13.4" dependencies = [ "async-trait", "borsh", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 80225a2287..384fee0f8e 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,10 +1,12 @@ [package] name = "kaspa-cli" -description = "Kaspa CLI library" +description = "Kaspa CLI" +keywords = ["kaspa", "wallet", "cli", "rpc"] version.workspace = true edition.workspace = true authors.workspace = true license.workspace = true +repository.workspace = true include = [ "src/**/*.rs", "src/**/*.txt", diff --git a/components/addressmanager/Cargo.toml b/components/addressmanager/Cargo.toml index e8d80cb333..a8a537ef10 100644 --- a/components/addressmanager/Cargo.toml +++ b/components/addressmanager/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] borsh.workspace = true diff --git a/components/connectionmanager/Cargo.toml b/components/connectionmanager/Cargo.toml index 7c4e4dd135..4033539e07 100644 --- a/components/connectionmanager/Cargo.toml +++ b/components/connectionmanager/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] duration-string.workspace = true diff --git a/components/consensusmanager/Cargo.toml b/components/consensusmanager/Cargo.toml index 4eabb33831..aeaaf9c616 100644 --- a/components/consensusmanager/Cargo.toml +++ b/components/consensusmanager/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] duration-string.workspace = true diff --git a/consensus/Cargo.toml b/consensus/Cargo.toml index c7ad59bdc6..3f7471b63d 100644 --- a/consensus/Cargo.toml +++ b/consensus/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] arc-swap.workspace = true diff --git a/consensus/core/Cargo.toml b/consensus/core/Cargo.toml index e7c7dadaee..1105b4a524 100644 --- a/consensus/core/Cargo.toml +++ b/consensus/core/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] async-trait.workspace = true diff --git a/consensus/notify/Cargo.toml b/consensus/notify/Cargo.toml index 6ffb291eb3..7d02c5fa5f 100644 --- a/consensus/notify/Cargo.toml +++ b/consensus/notify/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] async-channel.workspace = true diff --git a/consensus/pow/Cargo.toml b/consensus/pow/Cargo.toml index 064f704d04..e1b88d2757 100644 --- a/consensus/pow/Cargo.toml +++ b/consensus/pow/Cargo.toml @@ -6,7 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true - +repository.workspace = true [dependencies] js-sys.workspace = true diff --git a/consensus/wasm/Cargo.toml b/consensus/wasm/Cargo.toml index 56cd71e528..46199a8357 100644 --- a/consensus/wasm/Cargo.toml +++ b/consensus/wasm/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] kaspa-consensus-core.workspace = true diff --git a/core/Cargo.toml b/core/Cargo.toml index 2d49b2c61e..407ad01d12 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] cfg-if.workspace = true diff --git a/crypto/addresses/Cargo.toml b/crypto/addresses/Cargo.toml index 47a2297cb4..6754b763ea 100644 --- a/crypto/addresses/Cargo.toml +++ b/crypto/addresses/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] borsh.workspace = true diff --git a/crypto/hashes/Cargo.toml b/crypto/hashes/Cargo.toml index 147b36740a..4948c04928 100644 --- a/crypto/hashes/Cargo.toml +++ b/crypto/hashes/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [features] no-asm = ["keccak"] diff --git a/crypto/merkle/Cargo.toml b/crypto/merkle/Cargo.toml index 6023eed752..c840913aad 100644 --- a/crypto/merkle/Cargo.toml +++ b/crypto/merkle/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] kaspa-hashes.workspace = true diff --git a/crypto/muhash/Cargo.toml b/crypto/muhash/Cargo.toml index 770f84d986..4c1adba2cf 100644 --- a/crypto/muhash/Cargo.toml +++ b/crypto/muhash/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] kaspa-hashes.workspace = true diff --git a/crypto/txscript/Cargo.toml b/crypto/txscript/Cargo.toml index 318482bcd2..0a72475783 100644 --- a/crypto/txscript/Cargo.toml +++ b/crypto/txscript/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] blake2b_simd.workspace = true diff --git a/crypto/txscript/errors/Cargo.toml b/crypto/txscript/errors/Cargo.toml index 9a0f156065..7e6bb1b102 100644 --- a/crypto/txscript/errors/Cargo.toml +++ b/crypto/txscript/errors/Cargo.toml @@ -6,9 +6,10 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] thiserror.workspace = true -secp256k1 = { version = "0.24" } +secp256k1.workspace = true diff --git a/daemon/Cargo.toml b/daemon/Cargo.toml index b8c586465f..8f1c5387f7 100644 --- a/daemon/Cargo.toml +++ b/daemon/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] async-trait.workspace = true diff --git a/database/Cargo.toml b/database/Cargo.toml index 23d8deef63..630b5429e8 100644 --- a/database/Cargo.toml +++ b/database/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] bincode.workspace = true diff --git a/indexes/core/Cargo.toml b/indexes/core/Cargo.toml index c80bcbe1f2..3b4eaa5bc4 100644 --- a/indexes/core/Cargo.toml +++ b/indexes/core/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] async-channel.workspace = true diff --git a/indexes/processor/Cargo.toml b/indexes/processor/Cargo.toml index 1cf60bc7fe..f2ad90bba9 100644 --- a/indexes/processor/Cargo.toml +++ b/indexes/processor/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] kaspa-consensus-core.workspace = true diff --git a/indexes/utxoindex/Cargo.toml b/indexes/utxoindex/Cargo.toml index a3b771d73b..f94d039ffb 100644 --- a/indexes/utxoindex/Cargo.toml +++ b/indexes/utxoindex/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] futures.workspace = true diff --git a/kaspad/Cargo.toml b/kaspad/Cargo.toml index 377485065d..deaef36a43 100644 --- a/kaspad/Cargo.toml +++ b/kaspad/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "kaspad" description = "Kaspa full node daemon" +keywords = ["kaspa", "blockdag"] version.workspace = true edition.workspace = true authors.workspace = true diff --git a/kos/Cargo.toml b/kos/Cargo.toml index 99b90237de..96c8ca7e22 100644 --- a/kos/Cargo.toml +++ b/kos/Cargo.toml @@ -2,11 +2,11 @@ name = "kaspa-os" description = "Kaspa Node & Wallet Manager" # please keep this version detached from the workspace -version = "0.0.2" +version.workspace = true edition.workspace = true authors.workspace = true license.workspace = true -repository = "https://github.com/kaspanet/rusty-kaspa" +repository.workspace = true include = [ "src/**/*.rs", "src/**/*.txt", diff --git a/math/Cargo.toml b/math/Cargo.toml index 947e6bbe86..3b51b92b97 100644 --- a/math/Cargo.toml +++ b/math/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true license.workspace = true include.workspace = true +repository.workspace = true [dependencies] borsh.workspace = true diff --git a/metrics/core/Cargo.toml b/metrics/core/Cargo.toml index 5e8bba7741..6652644ded 100644 --- a/metrics/core/Cargo.toml +++ b/metrics/core/Cargo.toml @@ -1,10 +1,12 @@ [package] name = "kaspa-metrics-core" +description = "Tools for collecting and reporting Kaspa p2p node metrics" version.workspace = true authors.workspace = true license.workspace = true edition.workspace = true include.workspace = true +repository.workspace = true [dependencies] async-trait.workspace = true diff --git a/metrics/perf_monitor/Cargo.toml b/metrics/perf_monitor/Cargo.toml index c621de526e..56ab6f21b6 100644 --- a/metrics/perf_monitor/Cargo.toml +++ b/metrics/perf_monitor/Cargo.toml @@ -6,6 +6,7 @@ authors.workspace = true license.workspace = true edition.workspace = true include.workspace = true +repository.workspace = true [dependencies] kaspa-core.workspace = true diff --git a/mining/Cargo.toml b/mining/Cargo.toml index 6f8a8d84ce..47b84b2fe5 100644 --- a/mining/Cargo.toml +++ b/mining/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] kaspa-addresses.workspace = true diff --git a/mining/errors/Cargo.toml b/mining/errors/Cargo.toml index e3c644f7bd..ba7a5f767e 100644 --- a/mining/errors/Cargo.toml +++ b/mining/errors/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/notify/Cargo.toml b/notify/Cargo.toml index 40b76d5dd7..8ab14d89cc 100644 --- a/notify/Cargo.toml +++ b/notify/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] async-channel.workspace = true diff --git a/protocol/flows/Cargo.toml b/protocol/flows/Cargo.toml index e6ea977824..997e5dc2e7 100644 --- a/protocol/flows/Cargo.toml +++ b/protocol/flows/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] kaspa-core.workspace = true diff --git a/protocol/p2p/Cargo.toml b/protocol/p2p/Cargo.toml index be7a806d76..71fa1b5cca 100644 --- a/protocol/p2p/Cargo.toml +++ b/protocol/p2p/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [lib] path = "./src/lib.rs" diff --git a/rothschild/Cargo.toml b/rothschild/Cargo.toml index 1a64be73f5..4c40a7db96 100644 --- a/rothschild/Cargo.toml +++ b/rothschild/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] kaspa-core.workspace = true diff --git a/rpc/core/Cargo.toml b/rpc/core/Cargo.toml index 6afade05df..58f272cb6d 100644 --- a/rpc/core/Cargo.toml +++ b/rpc/core/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] kaspa-addresses.workspace = true diff --git a/rpc/grpc/client/Cargo.toml b/rpc/grpc/client/Cargo.toml index 7c95499e09..00e98997ae 100644 --- a/rpc/grpc/client/Cargo.toml +++ b/rpc/grpc/client/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] kaspa-core.workspace = true diff --git a/rpc/grpc/core/Cargo.toml b/rpc/grpc/core/Cargo.toml index 2895ead167..cca376ce75 100644 --- a/rpc/grpc/core/Cargo.toml +++ b/rpc/grpc/core/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] kaspa-consensus-core.workspace = true diff --git a/rpc/grpc/server/Cargo.toml b/rpc/grpc/server/Cargo.toml index f37016b655..026247ee25 100644 --- a/rpc/grpc/server/Cargo.toml +++ b/rpc/grpc/server/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] kaspa-consensus-core.workspace = true diff --git a/rpc/macros/Cargo.toml b/rpc/macros/Cargo.toml index ed8a8b40fc..32d990e765 100644 --- a/rpc/macros/Cargo.toml +++ b/rpc/macros/Cargo.toml @@ -4,6 +4,7 @@ authors.workspace = true edition.workspace = true license.workspace = true version.workspace = true +repository.workspace = true keywords = ["rpc"] categories = [] exclude = ["/.*", "/test"] diff --git a/rpc/service/Cargo.toml b/rpc/service/Cargo.toml index a2e71ff422..4716ba4c9c 100644 --- a/rpc/service/Cargo.toml +++ b/rpc/service/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] kaspa-addresses.workspace = true diff --git a/rpc/wrpc/client/Cargo.toml b/rpc/wrpc/client/Cargo.toml index f1d8b5dff3..e4d69786b1 100644 --- a/rpc/wrpc/client/Cargo.toml +++ b/rpc/wrpc/client/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [features] no-unsafe-eval = ["workflow-core/no-unsafe-eval","workflow-rpc/no-unsafe-eval"] diff --git a/rpc/wrpc/proxy/Cargo.toml b/rpc/wrpc/proxy/Cargo.toml index ff3036ea62..c0f1f9955b 100644 --- a/rpc/wrpc/proxy/Cargo.toml +++ b/rpc/wrpc/proxy/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] async-trait.workspace = true diff --git a/rpc/wrpc/server/Cargo.toml b/rpc/wrpc/server/Cargo.toml index b76530fc4b..05196bc6a5 100644 --- a/rpc/wrpc/server/Cargo.toml +++ b/rpc/wrpc/server/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [lib] crate-type = ["cdylib", "lib"] diff --git a/rpc/wrpc/wasm/Cargo.toml b/rpc/wrpc/wasm/Cargo.toml index 775377d892..4870e3d991 100644 --- a/rpc/wrpc/wasm/Cargo.toml +++ b/rpc/wrpc/wasm/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [lib] crate-type = ["cdylib", "lib"] diff --git a/simpa/Cargo.toml b/simpa/Cargo.toml index 12e70d43c8..adcdcded74 100644 --- a/simpa/Cargo.toml +++ b/simpa/Cargo.toml @@ -7,6 +7,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] kaspa-alloc.workspace = true # This changes the global allocator for all of the next dependencies so should be kept first diff --git a/testing/integration/Cargo.toml b/testing/integration/Cargo.toml index 8d0c3c01ab..98160e17ca 100644 --- a/testing/integration/Cargo.toml +++ b/testing/integration/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] kaspa-alloc.workspace = true # This changes the global allocator for all of the next dependencies so should be kept first diff --git a/utils/Cargo.toml b/utils/Cargo.toml index d2f71011c9..9d4b0e479b 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] parking_lot.workspace = true diff --git a/utils/alloc/Cargo.toml b/utils/alloc/Cargo.toml index 64cd0f06f8..10ba43cf4f 100644 --- a/utils/alloc/Cargo.toml +++ b/utils/alloc/Cargo.toml @@ -6,6 +6,7 @@ authors.workspace = true license.workspace = true edition.workspace = true include.workspace = true +repository.workspace = true [target.'cfg(not(target_os = "macos"))'.dependencies] mimalloc = { version = "0.1.39", default-features = false, features = [ diff --git a/utils/tower/Cargo.toml b/utils/tower/Cargo.toml index 6d2b244f1f..e6a271c2de 100644 --- a/utils/tower/Cargo.toml +++ b/utils/tower/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [dependencies] cfg-if.workspace = true diff --git a/wallet/bip32/Cargo.toml b/wallet/bip32/Cargo.toml index 50c97edd1b..65bbe75183 100644 --- a/wallet/bip32/Cargo.toml +++ b/wallet/bip32/Cargo.toml @@ -5,6 +5,7 @@ version.workspace = true edition.workspace = true authors.workspace = true license.workspace = true +repository.workspace = true # include *.txt files for word lists include = ["src/**/*.rs", "Cargo.toml", "src/**/*.txt"] # include.workspace = true diff --git a/wallet/core/Cargo.toml b/wallet/core/Cargo.toml index 57990bad9d..dfbf7aa1e7 100644 --- a/wallet/core/Cargo.toml +++ b/wallet/core/Cargo.toml @@ -1,11 +1,13 @@ [package] name = "kaspa-wallet-core" description = "Kaspa wallet library" +keywords = ["kaspa", "wallet"] version.workspace = true edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [features] no-unsafe-eval = ["workflow-core/no-unsafe-eval","workflow-rpc/no-unsafe-eval"] diff --git a/wallet/macros/Cargo.toml b/wallet/macros/Cargo.toml index 74a655ee8f..b003d8ecd7 100644 --- a/wallet/macros/Cargo.toml +++ b/wallet/macros/Cargo.toml @@ -4,6 +4,7 @@ authors.workspace = true edition.workspace = true license.workspace = true version.workspace = true +repository.workspace = true keywords = ["rpc"] categories = [] exclude = ["/.*", "/test"] diff --git a/wallet/native/Cargo.toml b/wallet/native/Cargo.toml index 5d4a1aca20..93b20fd619 100644 --- a/wallet/native/Cargo.toml +++ b/wallet/native/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [features] default = [] diff --git a/wallet/wasm/Cargo.toml b/wallet/wasm/Cargo.toml index f4d14b1fbc..e724809a9f 100644 --- a/wallet/wasm/Cargo.toml +++ b/wallet/wasm/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true authors.workspace = true include.workspace = true license.workspace = true +repository.workspace = true [features] default = []