Skip to content

Commit

Permalink
rust: bump to v0.31.0
Browse files Browse the repository at this point in the history
Signed-off-by: Yuki Kishimoto <yukikishimoto@protonmail.com>
  • Loading branch information
yukibtc committed May 17, 2024
1 parent 3eab86c commit 2a1b7f0
Show file tree
Hide file tree
Showing 16 changed files with 38 additions and 38 deletions.
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@ rust-version = "1.64.0"
async-trait = "0.1"
async-utility = "0.2"
js-sys = "0.3"
nostr = { version = "0.30", path = "./crates/nostr", default-features = false }
nostr-database = { version = "0.30", path = "./crates/nostr-database", default-features = false }
nostr-indexeddb = { version = "0.30", path = "./crates/nostr-indexeddb", default-features = false }
nostr-ndb = { version = "0.30", path = "./crates/nostr-ndb", default-features = false }
nostr-relay-pool = { version = "0.30", path = "./crates/nostr-relay-pool", default-features = false }
nostr-rocksdb = { version = "0.30", path = "./crates/nostr-rocksdb", default-features = false }
nostr-sdk = { version = "0.30", path = "./crates/nostr-sdk", default-features = false }
nostr-signer = { version = "0.30", path = "./crates/nostr-signer", default-features = false }
nostr-sqlite = { version = "0.30", path = "./crates/nostr-sqlite", default-features = false }
nostr-webln = { version = "0.30", path = "./crates/nostr-webln", default-features = false }
nostr-zapper = { version = "0.30", path = "./crates/nostr-zapper", default-features = false }
nwc = { version = "0.30", path = "./crates/nwc", default-features = false }
nostr = { version = "0.31", path = "./crates/nostr", default-features = false }
nostr-database = { version = "0.31", path = "./crates/nostr-database", default-features = false }
nostr-indexeddb = { version = "0.31", path = "./crates/nostr-indexeddb", default-features = false }
nostr-ndb = { version = "0.31", path = "./crates/nostr-ndb", default-features = false }
nostr-relay-pool = { version = "0.31", path = "./crates/nostr-relay-pool", default-features = false }
nostr-rocksdb = { version = "0.31", path = "./crates/nostr-rocksdb", default-features = false }
nostr-sdk = { version = "0.31", path = "./crates/nostr-sdk", default-features = false }
nostr-signer = { version = "0.31", path = "./crates/nostr-signer", default-features = false }
nostr-sqlite = { version = "0.31", path = "./crates/nostr-sqlite", default-features = false }
nostr-webln = { version = "0.31", path = "./crates/nostr-webln", default-features = false }
nostr-zapper = { version = "0.31", path = "./crates/nostr-zapper", default-features = false }
nwc = { version = "0.31", path = "./crates/nwc", default-features = false }
once_cell = { version = "1.19", default-features = false }
serde_json = { version = "1.0", default-features = false }
thiserror = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr-database/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-database"
version = "0.30.0"
version = "0.31.0"
edition = "2021"
description = "Database for Nostr apps"
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr-indexeddb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-indexeddb"
version = "0.30.0"
version = "0.31.0"
edition = "2021"
description = "Web's IndexedDB Storage backend for Nostr apps"
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr-ndb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-ndb"
version = "0.30.0"
version = "0.31.0"
edition = "2021"
description = "ndb (nostrdb) storage backend for Nostr apps"
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr-relay-pool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-relay-pool"
version = "0.30.0"
version = "0.31.0"
edition = "2021"
description = "Nostr Relay Pool"
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr-rocksdb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-rocksdb"
version = "0.30.0"
version = "0.31.0"
edition = "2021"
description = "RocksDB Storage backend for Nostr apps"
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-sdk"
version = "0.30.0"
version = "0.31.0"
edition = "2021"
description = "High level Nostr client library."
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ other lower-level crates. If you're attempting something more custom, you might

```toml
[dependencies]
nostr-sdk = "0.30"
nostr-sdk = "0.31"
tokio = { version = "1", features = ["full"] }
```

Expand Down
2 changes: 1 addition & 1 deletion crates/nostr-signer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-signer"
version = "0.30.0"
version = "0.31.0"
edition = "2021"
description = "Signer for Nostr apps"
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr-sqlite/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-sqlite"
version = "0.30.0"
version = "0.31.0"
edition = "2021"
description = "SQLite Storage backend for Nostr apps"
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr-webln/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-webln"
version = "0.30.0"
version = "0.31.0"
edition = "2021"
description = "WebLN zapper backend for Nostr apps"
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr-zapper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr-zapper"
version = "0.30.0"
version = "0.31.0"
edition = "2021"
description = "Zapper abstraction for Nostr apps"
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nostr"
version = "0.30.0"
version = "0.31.1"
edition = "2021"
description = "Rust implementation of the Nostr protocol."
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/nostr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ You may be interested in:

```toml
[dependencies]
nostr = "0.30"
nostr = "0.31"
```

```rust,no_run
Expand Down
2 changes: 1 addition & 1 deletion crates/nwc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nwc"
version = "0.30.0"
version = "0.31.0"
edition = "2021"
description = "NWC client and zapper backend for Nostr apps"
authors.workspace = true
Expand Down

0 comments on commit 2a1b7f0

Please sign in to comment.