Skip to content
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
6 changes: 3 additions & 3 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "irpc"
version = "0.2.2"
version = "0.2.3"
edition = "2021"
authors = ["Rüdiger Klaehn <rklaehn@protonmail.com>", "n0 team"]
keywords = ["api", "protocol", "network", "rpc"]
Expand Down Expand Up @@ -48,7 +48,7 @@ quinn = { workspace = true, optional = true, features = ["runtime-tokio"] }
[dev-dependencies]
tracing-subscriber = { workspace = true, features = ["fmt"] }
# used in the derive example. This must not be a main crate dep or else it will be circular!
irpc-derive = { version = "0.2.2", path = "./irpc-derive" }
irpc-derive = { version = "0.2.3", path = "./irpc-derive" }
# just convenient for the enum definitions, in the manual example
derive_more = { version = "2", features = ["from"] }
# we need full for example main etc.
Expand Down
2 changes: 1 addition & 1 deletion irpc-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "irpc-derive"
version = "0.2.2"
version = "0.2.3"
edition = "2021"
authors = ["Rüdiger Klaehn <rklaehn@protonmail.com>"]
keywords = ["api", "protocol", "network", "rpc", "macro"]
Expand Down
6 changes: 3 additions & 3 deletions irpc-iroh/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "irpc-iroh"
version = "0.2.2"
version = "0.2.3"
edition = "2021"
authors = ["Rüdiger Klaehn <rklaehn@protonmail.com>", "n0 team"]
keywords = ["api", "protocol", "network", "rpc"]
Expand All @@ -17,12 +17,12 @@ tracing = { workspace = true }
serde = { workspace = true }
postcard = { workspace = true, features = ["alloc", "use-std"] }
n0-future = { workspace = true }
irpc = { version = "0.2.2", path = ".." }
irpc = { version = "0.2.3", path = ".." }

[target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies]
getrandom = { version = "0.3", features = ["wasm_js"] }

[dev-dependencies]
n0-future = { workspace = true }
tracing-subscriber = { workspace = true, features = ["fmt"] }
irpc-derive = { version = "0.2.2", path = "../irpc-derive" }
irpc-derive = { version = "0.2.3", path = "../irpc-derive" }