From f6342e082ef99ed29253cfa7392de9c7541e494a Mon Sep 17 00:00:00 2001 From: Rigidity Date: Fri, 5 Jul 2024 22:11:30 -0400 Subject: [PATCH] Fix versions --- crates/rue-cli/Cargo.toml | 6 +++--- crates/rue-compiler/Cargo.toml | 4 ++-- crates/rue-lsp/Cargo.toml | 4 ++-- crates/rue-parser/Cargo.toml | 2 +- crates/rue-tests/Cargo.toml | 6 +++--- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/crates/rue-cli/Cargo.toml b/crates/rue-cli/Cargo.toml index e505acd..f320877 100644 --- a/crates/rue-cli/Cargo.toml +++ b/crates/rue-cli/Cargo.toml @@ -16,9 +16,9 @@ workspace = true [dependencies] clap = { version = "4.5.4", features = ["derive"] } -rue-parser = { path = "../../crates/rue-parser" } -rue-compiler = { path = "../../crates/rue-compiler" } -rue-clvm = { path = "../../crates/rue-clvm" } +rue-parser = { path = "../../crates/rue-parser", version = "0.1.0" } +rue-compiler = { path = "../../crates/rue-compiler", version = "0.1.0" } +rue-clvm = { path = "../../crates/rue-clvm", version = "0.1.0" } clvmr = "0.6.1" hex = "0.4.3" diff --git a/crates/rue-compiler/Cargo.toml b/crates/rue-compiler/Cargo.toml index 791d986..cb9253b 100644 --- a/crates/rue-compiler/Cargo.toml +++ b/crates/rue-compiler/Cargo.toml @@ -15,8 +15,8 @@ categories = { workspace = true } workspace = true [dependencies] -rue-parser = { path = "../rue-parser" } -rue-clvm = { path = "../rue-clvm" } +rue-parser = { path = "../rue-parser", version = "0.1.0" } +rue-clvm = { path = "../rue-clvm", version = "0.1.0" } clvmr = "0.6.1" id-arena = "2.2.1" indexmap = "2.2.6" diff --git a/crates/rue-lsp/Cargo.toml b/crates/rue-lsp/Cargo.toml index 9c88a3e..01a6284 100644 --- a/crates/rue-lsp/Cargo.toml +++ b/crates/rue-lsp/Cargo.toml @@ -15,8 +15,8 @@ categories = { workspace = true } workspace = true [dependencies] -rue-parser = { path = "../rue-parser" } -rue-compiler = { path = "../rue-compiler" } +rue-parser = { path = "../rue-parser", version = "0.1.0" } +rue-compiler = { path = "../rue-compiler", version = "0.1.0" } tokio = { version = "1.37.0", features = ["full"] } tower-lsp = "0.20.0" clvmr = "0.6.1" diff --git a/crates/rue-parser/Cargo.toml b/crates/rue-parser/Cargo.toml index 769ad40..acf1e2e 100644 --- a/crates/rue-parser/Cargo.toml +++ b/crates/rue-parser/Cargo.toml @@ -19,4 +19,4 @@ indexmap = "2.2.6" num-derive = "0.4.2" num-traits = "0.2.18" rowan = "0.15.15" -rue-lexer = { path = "../rue-lexer" } +rue-lexer = { path = "../rue-lexer", version = "0.1.0" } diff --git a/crates/rue-tests/Cargo.toml b/crates/rue-tests/Cargo.toml index ac4f11d..114fea5 100644 --- a/crates/rue-tests/Cargo.toml +++ b/crates/rue-tests/Cargo.toml @@ -16,9 +16,9 @@ categories = { workspace = true } workspace = true [dependencies] -rue-parser = { path = "../rue-parser" } -rue-compiler = { path = "../rue-compiler" } -rue-clvm = { path = "../rue-clvm" } +rue-parser = { path = "../rue-parser", version = "0.1.0" } +rue-compiler = { path = "../rue-compiler", version = "0.1.0" } +rue-clvm = { path = "../rue-clvm", version = "0.1.0" } clvm-utils = "0.6.0" clvmr = "0.6.1" hex = "0.4.3"