Skip to content

Commit

Permalink
bump solar and solar_cli to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mycognosist committed Mar 11, 2024
1 parent 07a44f6 commit 5be285d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions solar/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "solar"
version = "0.3.4"
version = "0.4.0"
authors = ["adria0 <[email protected]>", "glyph <[email protected]>"]
description = "Embeddable Scuttlebutt network node"
edition = "2018"
Expand All @@ -14,7 +14,7 @@ async-std = { version = "1", features=["attributes", "tokio1"] }
async-trait = "0.1"
base64 = "0.13"
futures = "0.3"
hex = "0.4.0"
hex = "0.4"
jsonrpsee = { version = "0.18.2", features = ["server"] }
kuska-sodiumoxide = "0.2.5-0"
kuska-ssb = { git = "https://github.com/Kuska-ssb/ssb", branch = "master" }
Expand All @@ -27,7 +27,7 @@ serde_cbor = "0.11"
serde_json = { version = "1", features=["preserve_order", "arbitrary_precision"] }
sha2 = "0.10"
sled = "0.34"
toml = "0.7.4"
toml = "0.7"
url = "2.3"
xdg = "2.4"

Expand Down
8 changes: 4 additions & 4 deletions solar_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "solar_cli"
version = "0.3.4"
version = "0.4.0"
authors = ["adria0 <[email protected]>", "glyph <[email protected]>"]
edition = "2018"
license = "AGPL-3.0"
Expand All @@ -15,14 +15,14 @@ path = "src/main.rs"

[dependencies]
async-std = { version = "1", features=["attributes", "tokio1"] }
clap = { version = "4.1.8", features = ["derive"] }
clap = { version = "4.1", features = ["derive"] }
env_logger = "0.10"
hex = "0.4.0"
hex = "0.4"
kuska-sodiumoxide = "0.2.5-0"
kuska-ssb = { git = "https://github.com/Kuska-ssb/ssb", branch = "master" }
log = "0.4"
url = "2.3"

[dependencies.solar]
version = "~0.3.4"
version = "~0.4.0"
path = "../solar"
6 changes: 3 additions & 3 deletions solar_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ version = "0.1.0"
edition = "2021"

[dependencies]
anyhow = "1.0.79"
jsonrpc_client = { version = "0.7.1", features = ["macros", "reqwest"] }
anyhow = "1"
jsonrpc_client = { version = "0.7", features = ["macros", "reqwest"] }
reqwest = { version = "0.11", default-features = false, features = [ "json" ] }
serde_json = { version = "1", features = ["preserve_order", "arbitrary_precision"] }

[dev-dependencies]
tokio = { version = "1.36.0", features = [ "macros", "rt-multi-thread" ] }
tokio = { version = "1.36", features = [ "macros", "rt-multi-thread" ] }

0 comments on commit 5be285d

Please sign in to comment.