Skip to content

Commit

Permalink
Fix versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Rigidity committed Jul 6, 2024
1 parent 8b0d3d6 commit f6342e0
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions crates/rue-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
4 changes: 2 additions & 2 deletions crates/rue-compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions crates/rue-lsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion crates/rue-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
6 changes: 3 additions & 3 deletions crates/rue-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit f6342e0

Please sign in to comment.