@setoelkahfi / sigit / commits / 4ba49d8

Use onde crate from GitHub instead of local path

paydii committed Apr 24, 2026 at 08:12 UTC 4ba49d85b3fe2066785c2e39f506e0ac03a0ad13
2 files changed +3 -1
Cargo.lock
+1
index 68ba15e..a6ab305 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3799,6 +3799,7 @@ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" [[package]] name = "onde" version = "0.1.7" +source = "git+https://github.com/ondeinference/onde?branch=main#e33a62ef5af2d8de84f723e41eb758d5aa32c4e6" dependencies = [ "anyhow", "cc",
Cargo.toml
+2 -1
index 816e1d2..dd3838e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,8 @@ path = "src/main.rs" agent-client-protocol = { version = "0.10.4", features = ["unstable_session_fork"] } # Onde Inference engine (local LLM) -onde = { path = "../onde" } +# For local development: onde = { path = "../onde" } +onde = { git = "https://github.com/ondeinference/onde", branch = "main" } # Async runtime async-trait = "0.1"