Merge pull request #3054 from nymtech/jon/chore/publish-nym-pemstore

pemstore: update metadata
This commit is contained in:
Jon Häggblad
2023-02-20 10:52:01 +01:00
committed by GitHub
4 changed files with 13 additions and 9 deletions
Generated
+2 -4
View File
@@ -4315,13 +4315,11 @@ checksum = "c719dcf55f09a3a7e764c6649ab594c18a177e3599c467983cdf644bfc0a4088"
[[package]]
name = "pem"
version = "0.8.3"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd56cbd21fea48d0c440b41cd69c589faacade08c992d9a54e471b79d0fd13eb"
checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8"
dependencies = [
"base64 0.13.1",
"once_cell",
"regex",
]
[[package]]
+2
View File
@@ -103,7 +103,9 @@ exclude = ["explorer", "contracts", "clients/webassembly", "nym-wallet", "nym-co
authors = ["Nym Technologies SA"]
repository = "https://github.com/nymtech/nym"
homepage = "https://nymtech.net"
documentation = "https://nymtech.net"
edition = "2021"
license = "Apache-2.0"
[workspace.dependencies]
async-trait = "0.1.63"
+8 -4
View File
@@ -1,10 +1,14 @@
[package]
name = "nym-pemstore"
description = "Store private-public keypairs in PEM format"
version = "0.1.0"
authors = ["Jedrzej Stuczynski <andrew@nymtech.net>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
edition = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
readme = { workspace = true }
homepage = { workspace = true }
documentation = { workspace = true }
[dependencies]
pem = "0.8"
+1 -1
View File
@@ -49,7 +49,7 @@ mixnet-client = { path="../common/client-libs/mixnet-client" }
mixnode-common = { path="../common/mixnode-common" }
nonexhaustive-delayqueue = { path="../common/nonexhaustive-delayqueue" }
nymsphinx = { path="../common/nymsphinx" }
nym-pemstore = { path="../common/pemstore" }
nym-pemstore = { path = "../common/pemstore", version = "0.1.0" }
task = { path = "../common/task" }
nym-types = { path = "../common/types" }
topology = { path="../common/topology" }