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
36 changes: 18 additions & 18 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion lib/src/tunnels.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ use gateway_api::apis::standard::httproutes::{
};

const DEFAULT_PCP_NAMESPACE: &str = "default";
const DEFAULT_CONNECTOR_CLASS_NAME: &str = "datum-connect";
const DEFAULT_CONNECTOR_CLASS_NAME: &str = "iroh-quic-tunnel";
const CONNECTOR_SELECTOR_FIELD: &str = "status.connectionDetails.publicKey.id";
const ADVERTISEMENT_CONNECTOR_FIELD: &str = "spec.connectorRef.name";
const DISPLAY_NAME_ANNOTATION: &str = "app.kubernetes.io/name";
Expand Down
6 changes: 5 additions & 1 deletion ui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@ data-encoding.workspace = true
uuid.workspace = true
n0-error.workspace = true
rustls.workspace = true
dioxus-primitives = { git = "https://github.com/DioxusLabs/components", version = "0.0.1", default-features = false }
# Pinned to a known-good rev: the upstream repo is a moving 0.0.1 git dep
# with no published versioning, and bundle CI runs `cargo generate-lockfile`,
# so without a rev pin every CI run picks up upstream HEAD and breaks
# whenever the Select/Props API drifts. Bump deliberately, never via auto-resolve.
dioxus-primitives = { git = "https://github.com/DioxusLabs/components", rev = "ffbc750181ea2195e20736ae3ad0c24ad9684c41", version = "0.0.1", default-features = false }
sentry.workspace = true

[features]
Expand Down
Loading