Skip to content

Commit 9ad1134

Browse files
author
Symbiont OSS Sync
committed
compile fixes and bump to v0.6.1
1 parent 443e86e commit 9ad1134

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ rust-version = "1.70"
4141
clap = { version = "4.0", features = ["derive"] }
4242
tokio = { version = "1.0", features = ["full"] }
4343
sysinfo = "0.30.13"
44-
symbi-runtime = { version = "0.6.1", path = "crates/runtime", features = ["http-input", "http-api"] }
44+
symbi-runtime = { path = "crates/runtime", features = ["http-input", "http-api"] }
4545

4646
[profile.release]
4747
# Optimize for performance and security

crates/crates/repl-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ serde = { version = "1.0", features = ["derive"] }
1616
serde_json = "1.0"
1717
tokio = { version = "1.0", features = ["full"] }
1818
chrono = { version = "0.4", features = ["serde"] }
19-
repl-core = { version = "0.6.1", path = "../repl-core" }
20-
repl-proto = { version = "0.6.1", path = "../repl-proto" }
19+
repl-core = { path = "../repl-core" }
20+
repl-proto = { path = "../repl-proto" }

crates/crates/repl-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ serde_json = "1.0"
2424
uuid = { version = "1.0", features = ["v4", "serde"] }
2525
tokio = { version = "1.0", features = ["sync"] }
2626
tracing = "0.1"
27-
symbi-runtime = { version = "0.6.1", path = "../runtime" }
27+
symbi-runtime = { path = "../runtime" }
2828

2929
[dev-dependencies]
3030
tokio-test = "0.4"

crates/crates/repl-lsp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ path = "src/main.rs"
1818
tokio = { version = "1", features = ["full"] }
1919
tower-lsp = "0.20"
2020
serde_json = "1.0"
21-
repl-core = { version = "0.6.1", path = "../repl-core" }
21+
repl-core = { path = "../repl-core" }

crates/crates/runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ path = "examples/full_system.rs"
2222
name = "symbi-mcp"
2323
path = "src/bin/symbiont_mcp.rs"
2424
[dependencies]
25-
symbi-dsl = { version = "0.6.1", path = "../dsl" }
25+
symbi-dsl = { path = "../dsl" }
2626
tokio = { version = "1.0", features = ["full"] }
2727
serde = { version = "1.0", features = ["derive"] }
2828
serde_json = "1.0"

0 commit comments

Comments
 (0)