Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
682e293
binary format messages on rust side
DenisBiryukov91 May 19, 2025
a04e783
finished binary format on rust side
DenisBiryukov91 May 21, 2025
502a93d
pack qos and query settings
DenisBiryukov91 May 22, 2025
c4a6f6e
Merge branch 'main' into binary-format
DenisBiryukov91 May 22, 2025
f28388a
wip ts
DenisBiryukov91 May 22, 2025
f1769df
wip ts
DenisBiryukov91 May 23, 2025
f6ff845
wip ts
DenisBiryukov91 May 23, 2025
315307a
binary protocol ts
DenisBiryukov91 May 26, 2025
a74f60f
merge main
DenisBiryukov91 May 26, 2025
e6078a8
fix build issues
DenisBiryukov91 May 26, 2025
c98de78
fixes
DenisBiryukov91 May 26, 2025
8092e5a
improve serialization performance
DenisBiryukov91 May 26, 2025
040a1e7
improve serialization performance
DenisBiryukov91 May 27, 2025
87d104e
fixes
DenisBiryukov91 May 27, 2025
2d46137
test fixes
DenisBiryukov91 May 27, 2025
9fb3a37
fix browser example
DenisBiryukov91 May 27, 2025
2c33e02
lint fixes
DenisBiryukov91 May 27, 2025
08bd73c
add test for 0 query replies
DenisBiryukov91 May 27, 2025
020e4c0
fmt
DenisBiryukov91 May 27, 2025
cab1f82
remove unnecessary ZBytes constructor call;
DenisBiryukov91 May 28, 2025
d9dbcf5
fix AdminSapceClient::register_subscriber
DenisBiryukov91 May 28, 2025
c11afef
do not use encoder/decoder for 0-length strings during serialziation/…
DenisBiryukov91 May 28, 2025
43a5034
improve read/writeSequenceLenght performance for small sequences
DenisBiryukov91 May 28, 2025
3040ef2
add messageResponseTimeoutMs to the Config
DenisBiryukov91 May 28, 2025
21b28c2
clear error timeout upon remote api request reception
DenisBiryukov91 May 28, 2025
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
27 changes: 27 additions & 0 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ ts-rs = { version = "9.0", features = [
"no-serde-warnings",
"import-esm",
] }
lru = "0.14.0"
tracing = "0.1"
schemars = { version = "0.8.21", features = ["either"] }
serde = { version = "1.0.210", default-features = false, features = [
Expand Down
1 change: 1 addition & 0 deletions zenoh-plugin-remote-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ uuid = { workspace=true, default-features = false, features = [
"serde",
] }
uhlc = { workspace=true, default-features = false } # Default features are disabled due to usage in no_std crates
lru = { workspace = true }

[build-dependencies]
rustc_version = "0.4.0"
Expand Down
Loading