Skip to content

Commit

Permalink
Merge pull request #320 from baszalmstra/fix/cargo_versions
Browse files Browse the repository at this point in the history
fix: cargo versions for publishing
  • Loading branch information
Wodann authored Apr 11, 2021
2 parents 4947572 + d66b9f2 commit c73fed0
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion crates/mun/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ features = ["precommit-hook", "run-cargo-test", "run-cargo-fmt", "run-cargo-clip

[dev-dependencies]
tempfile = "3.1"
mun_skeptic = { version = "=0.1.0", path = "../mun_skeptic" }
mun_skeptic = { path = "../mun_skeptic" }

[build-dependencies]
mun_skeptic = { version = "=0.1.0", path = "../mun_skeptic" }
8 changes: 4 additions & 4 deletions crates/mun_codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ by_address = "1.0.4"
paths = { version="=0.1.0", path="../mun_paths", package="mun_paths"}

[dev-dependencies]
abi = { version = "=0.3.0", path = "../mun_abi", package = "mun_abi" }
abi = { path = "../mun_abi", package = "mun_abi" }
insta = "0.16"
libloader = { version = "=0.1.0", path = "../mun_libloader", package = "mun_libloader" }
mun_test = { version = "=0.1.0", path = "../mun_test" }
runtime = { version = "=0.3.0", path = "../mun_runtime", package = "mun_runtime" }
libloader = { path = "../mun_libloader", package = "mun_libloader" }
mun_test = { path = "../mun_test" }
runtime = { path = "../mun_runtime", package = "mun_runtime" }

[build-dependencies]
semver = "0.9.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/mun_hir/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ arrayvec = "0.5.2"
insta = "0.16"
text_trees = "0.1.2"
parking_lot = "0.10"
mun_test = { version = "=0.1.0", path = "../mun_test" }
mun_test = { path = "../mun_test" }
2 changes: 1 addition & 1 deletion crates/mun_language_server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ ra_ap_text_edit="0.0.35"

[dev-dependencies]
tempdir = "0.3.7"
mun_test = { version = "=0.1.0", path = "../mun_test"}
mun_test = { path = "../mun_test"}
insta = "0.16"
itertools = "0.10.0"
2 changes: 1 addition & 1 deletion crates/mun_memory/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mun_memory"
version = "0.1.0"
version = "0.2.0"
authors = ["The Mun Team <[email protected]>"]
edition = "2018"
description = "Memory management functionality for Mun"
Expand Down
4 changes: 2 additions & 2 deletions crates/mun_runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ anyhow = "1.0"
libloader = { version = "=0.1.0", path = "../mun_libloader", package = "mun_libloader" }
log = "0.4"
md5 = "0.7.0"
memory = { version = "=0.1.0", path = "../mun_memory", package = "mun_memory" }
memory = { version = "=0.2.0", path = "../mun_memory", package = "mun_memory" }
mun_project = { version = "=0.1.0", path = "../mun_project" }
notify = "4.0.12"
once_cell = "1.4.0"
Expand All @@ -29,7 +29,7 @@ rustc-hash = "1.1"
compiler = { version="=0.3.0", path="../mun_compiler", package = "mun_compiler" }
criterion = "0.3"
mlua = { package ="mlua", version="0.2", default-features = false, features=["vendored", "luajit"] }
mun_test = { version = "=0.1.0", path = "../mun_test" }
mun_test = { path = "../mun_test" }
tempfile = "3"
termcolor = "1.1"
wasmer-runtime = "0.16"
Expand Down
4 changes: 2 additions & 2 deletions crates/mun_runtime_capi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ crate-type = ["cdylib"]
anyhow = "1.0.31"
lazy_static = "1.4.0"
abi = { version = "=0.3.0", path = "../mun_abi", package = "mun_abi" }
memory = { version = "=0.1.0", path = "../mun_memory", package = "mun_memory" }
memory = { version = "=0.2.0", path = "../mun_memory", package = "mun_memory" }
runtime = { version = "=0.3.0", path = "../mun_runtime", package = "mun_runtime" }
parking_lot = "0.10"
rand = "0.7.2"

[dev-dependencies]
compiler = { version="=0.3.0", path="../mun_compiler", package = "mun_compiler" }
compiler = { path="../mun_compiler", package = "mun_compiler" }
paste = "0.1"
tempfile = "3"

0 comments on commit c73fed0

Please sign in to comment.