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
1 change: 1 addition & 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 @@ -32,6 +32,7 @@ jsonschema = { version = "0.49.4", default-features = false }
jsonptr = { version = "0.8.1", default-features = false, features = ["std", "json", "resolve"] }
parking_lot = "0.12"
rand = "0.10"
regex = "1"
reqwest = { version = "0.13.4", default-features = false, features = ["json", "rustls", "stream"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
Expand Down
3 changes: 3 additions & 0 deletions crates/libsy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,16 @@ async-trait.workspace = true
serde.workspace = true
serde_json.workspace = true
futures.workspace = true
# Typed status codes for errors synthesized from broken upstream streams.
http.workspace = true
jsonschema.workspace = true
jsonptr.workspace = true
# Metrics-only OTel API: instruments record through the host-installed global
# meter provider. Pinned to the 0.32 line used across the workspace.
opentelemetry = { version = "0.32", default-features = false, features = ["metrics"] }
parking_lot.workspace = true
rand.workspace = true
regex.workspace = true
switchyard-protocol.workspace = true
thiserror.workspace = true
tokio.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/libsy/src/algorithms.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
//! Everything public here is re-exported at the crate root; reach for it by name —
//! `use switchyard_libsy::Random`.

pub mod advisor_gate;
pub mod fall_through;
pub mod llm_class;
pub mod noop;
Expand Down
Loading
Loading