Skip to content

Commit

Permalink
Serialization: update Cargo.toml features
Browse files Browse the repository at this point in the history
  • Loading branch information
DariusIMP committed Oct 1, 2024
1 parent c3c87a5 commit f933740
Showing 3 changed files with 32 additions and 31 deletions.
56 changes: 28 additions & 28 deletions zenoh-jni/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 zenoh-jni/Cargo.toml
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ description = "Zenoh: Zero Overhead Pub/sub, Store/Query and Compute."
name = "zenoh_jni"

[features]
default = ["zenoh/default", "zenoh-ext/default"]
default = ["zenoh/default", "zenoh-ext"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
@@ -36,8 +36,8 @@ flume = "0.10.14"
uhlc = "0.8.0"
json5 = "0.4.1"
serde_yaml = "0.9.19"
zenoh = { version = "1.0.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", default-features = false }
zenoh-ext = { version = "1.0.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", default-features = false }
zenoh = { version = "1.0.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", features = ["unstable", "internal"], default-features = false }
zenoh-ext = { version = "1.0.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", default-features = false, optional = true }
tracing = { version = "0.1" , features = ["log"] }
[lib]
name = "zenoh_jni"
1 change: 1 addition & 0 deletions zenoh-jni/src/lib.rs
Original file line number Diff line number Diff line change
@@ -23,6 +23,7 @@ mod scouting;
mod session;
mod subscriber;
mod utils;
#[cfg(feature = "zenoh-ext")]
mod zbytes;
mod zenoh_id;

0 comments on commit f933740

Please sign in to comment.