Skip to content

Commit

Permalink
chore: add experiments directory
Browse files Browse the repository at this point in the history
  • Loading branch information
TheButlah committed Dec 16, 2024
1 parent d9e1e3c commit c6953fa
Show file tree
Hide file tree
Showing 18 changed files with 1,413 additions and 78 deletions.
1,442 changes: 1,367 additions & 75 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ resolver = "2"
members = [
"agentwire",
"agentwire/macros",
"artificer",
"attest",
"attest/dbus",
"backend-state",
Expand All @@ -13,6 +12,8 @@ members = [
"const-concat",
"deps-tests",
"endpoints",
"experiments/artificer",
"experiments/zenoh",
"header-parsing",
"hil",
"jwk-util",
Expand Down Expand Up @@ -86,6 +87,7 @@ tracing-journald = "0.3.0"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
zbus = { version = "4.4.0", default-features = false, features = ["tokio"] }
zbus_systemd = "0.25600.0"
zenoh = "1.0.3"

can-rs.path = "can"
orb-attest-dbus.path = "attest/dbus"
Expand Down
4 changes: 2 additions & 2 deletions artificer/Cargo.toml → experiments/artificer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository.workspace = true
rust-version.workspace = true

[dependencies]
orb-build-info.path = "../build-info"
orb-build-info.workspace = true
cacache = "13"
clap.workspace = true
color-eyre.workspace = true
Expand All @@ -29,4 +29,4 @@ tracing.workspace = true
tracing-subscriber.workspace = true

[build-dependencies]
orb-build-info = { path = "../build-info", features = ["build-script"] }
orb-build-info = { workspace = true, features = ["build-script"] }
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
40 changes: 40 additions & 0 deletions experiments/zenoh/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
[package]
name = "orb-zenoh-rpc"
version = "0.0.0"
description = "Experiments with the zenoh messaging system"
publish = false

edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true

[dependencies]
async-trait = "0.1.74"
clap.workspace = true
color-eyre.workspace = true
dashmap = "5.5.3"
derive_more.workspace = true
eyre.workspace = true
futures.workspace = true
orb-build-info.workspace = true
orb-messages.workspace = true
orb-telemetry.workspace = true
prost = "0.12.3"
rand = "0.8.5"
serde.workspace = true
serde_json = "1.0.108"
tokio-stream = "0.1.14"
tokio.workspace = true
tracing.workspace = true
zbus.workspace = true
zenoh.workspace = true
quinn = { version = "0.11.6", features = ["rustls"] }
rcgen = "0.13.1"

[build-dependencies]
orb-build-info = { workspace = true, features = ["build-script"] }

[lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = ['cfg(tokio_unstable)']
1 change: 1 addition & 0 deletions experiments/zenoh/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

0 comments on commit c6953fa

Please sign in to comment.