-
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: bump version after release (#550)
Bump version after release This PR has been auto-generated Co-authored-by: Mun Auto Releaser <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
3f3055d
commit 513dc7a
Showing
21 changed files
with
79 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mun" | ||
version = "0.5.0" | ||
version = "0.6.0-dev" | ||
authors = ["The Mun Team <[email protected]>"] | ||
edition = "2021" | ||
description = "Command-line interface for compiling, monitoring and running Mun code" | ||
|
@@ -18,12 +18,12 @@ anyhow = { version = "1.0.75", default-features = false } | |
clap = { version = "4.4.11", default-features = false, features = ["std", "derive"] } | ||
log = { version = "0.4", default-features = false } | ||
pretty_env_logger = { version = "0.5.0", default-features = false } | ||
mun_abi = { version = "0.5.0", path = "../mun_abi" } | ||
mun_compiler = { version = "0.5.0", path = "../mun_compiler" } | ||
mun_compiler_daemon = { version = "0.5.0", path = "../mun_compiler_daemon" } | ||
mun_runtime = { version = "0.5.0", path = "../mun_runtime" } | ||
mun_language_server = { version = "0.5.0", path = "../mun_language_server" } | ||
mun_project = { version = "0.5.0", path = "../mun_project" } | ||
mun_abi = { version = "0.6.0-dev", path = "../mun_abi" } | ||
mun_compiler = { version = "0.6.0-dev", path = "../mun_compiler" } | ||
mun_compiler_daemon = { version = "0.6.0-dev", path = "../mun_compiler_daemon" } | ||
mun_runtime = { version = "0.6.0-dev", path = "../mun_runtime" } | ||
mun_language_server = { version = "0.6.0-dev", path = "../mun_language_server" } | ||
mun_project = { version = "0.6.0-dev", path = "../mun_project" } | ||
|
||
[dev-dependencies.cargo-husky] | ||
version = "1" | ||
|
@@ -32,7 +32,7 @@ features = ["precommit-hook", "run-cargo-test", "run-cargo-fmt", "run-cargo-clip | |
|
||
[dev-dependencies] | ||
tempfile = "3.8" | ||
mun_skeptic = { path = "../mun_skeptic", version = "0.5.0" } | ||
mun_skeptic = { path = "../mun_skeptic", version = "0.6.0-dev" } | ||
|
||
[build-dependencies] | ||
mun_skeptic = { path = "../mun_skeptic", version = "0.5.0" } | ||
mun_skeptic = { path = "../mun_skeptic", version = "0.6.0-dev" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mun_abi" | ||
version = "0.5.0" | ||
version = "0.6.0-dev" | ||
authors = ["The Mun Team <[email protected]>"] | ||
edition = "2021" | ||
description = "Rust wrapper for the Mun ABI" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mun_capi_utils" | ||
version = "0.5.0" | ||
version = "0.6.0-dev" | ||
edition = "2021" | ||
authors = ["The Mun Team <[email protected]>"] | ||
description = "Common functionality between C api crates." | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mun_codegen" | ||
version = "0.5.0" | ||
version = "0.6.0-dev" | ||
authors = ["The Mun Team <[email protected]>"] | ||
edition = "2021" | ||
description = "LLVM IR code generation for Mun" | ||
|
@@ -13,22 +13,22 @@ keywords = ["game", "hot-reloading", "language", "mun", "scripting"] | |
categories = ["Game development", "Mun"] | ||
|
||
[dependencies] | ||
mun_abi = { version = "0.5.0", path = "../mun_abi" } | ||
mun_abi = { version = "0.6.0-dev", path = "../mun_abi" } | ||
anyhow = { version = "1.0.75", default-features = false, features = ["std"] } | ||
apple-codesign = { version = "0.26.0", default-features = false, git = "https://github.com/baszalmstra/apple-platform-rs.git", branch = "fix/disabled_features" } | ||
array-init = { version = "2.1.0", default-features = false } | ||
by_address = { version = "1.1.0", default-features = false } | ||
bytemuck = { version = "1.14.0", default-features = false } | ||
mun_hir = { version = "0.5.0", path = "../mun_hir" } | ||
mun_hir = { version = "0.6.0-dev", path = "../mun_hir" } | ||
inkwell = { version = "0.2.0", default-features = false, features = ["llvm14-0", "target-x86", "target-aarch64"] } | ||
itertools = { version = "0.12.0", default-features = false } | ||
mun_codegen_macros = { version = "0.5.0", path = "../mun_codegen_macros" } | ||
mun_target = { version = "0.5.0", path = "../mun_target" } | ||
mun_codegen_macros = { version = "0.6.0-dev", path = "../mun_codegen_macros" } | ||
mun_target = { version = "0.6.0-dev", path = "../mun_target" } | ||
once_cell = { version = "1.19.0", default-features = false } | ||
lld_rs = { version = "140.0.0", default-features = false } | ||
parking_lot = { version = "0.12.1", default-features = false } | ||
paste = { version = "1.0.14", default-features = false } | ||
mun_paths = { version = "0.5.0", path = "../mun_paths" } | ||
mun_paths = { version = "0.6.0-dev", path = "../mun_paths" } | ||
rustc-hash = { version = "1.1.0", default-features = false } | ||
salsa = { version = "0.16.1", default-features = false } | ||
smallvec = { version = "1.11.2", features = ["union"], default-features = false } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mun_codegen_macros" | ||
version = "0.5.0" | ||
version = "0.6.0-dev" | ||
authors = ["The Mun Team <[email protected]>"] | ||
edition = "2021" | ||
description = "Macros used by mun code generation" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mun_compiler" | ||
version = "0.5.0" | ||
version = "0.6.0-dev" | ||
authors = ["The Mun Team <[email protected]>"] | ||
edition = "2021" | ||
description = "Binary compilation functionality for Mun" | ||
|
@@ -13,13 +13,13 @@ keywords = ["game", "hot-reloading", "language", "mun", "scripting"] | |
categories = ["game-development", "mun"] | ||
|
||
[dependencies] | ||
mun_codegen = { version = "0.5.0", path = "../mun_codegen" } | ||
mun_syntax = { version = "0.5.0", path = "../mun_syntax" } | ||
mun_hir = { version = "0.5.0", path = "../mun_hir" } | ||
mun_paths = { version = "0.5.0", path = "../mun_paths" } | ||
mun_target = { version = "0.5.0", path = "../mun_target" } | ||
mun_project = { version = "0.5.0", path = "../mun_project" } | ||
mun_diagnostics = { version = "0.5.0", path = "../mun_diagnostics" } | ||
mun_codegen = { version = "0.6.0-dev", path = "../mun_codegen" } | ||
mun_syntax = { version = "0.6.0-dev", path = "../mun_syntax" } | ||
mun_hir = { version = "0.6.0-dev", path = "../mun_hir" } | ||
mun_paths = { version = "0.6.0-dev", path = "../mun_paths" } | ||
mun_target = { version = "0.6.0-dev", path = "../mun_target" } | ||
mun_project = { version = "0.6.0-dev", path = "../mun_project" } | ||
mun_diagnostics = { version = "0.6.0-dev", path = "../mun_diagnostics" } | ||
annotate-snippets = { version = "0.10.0", default-features = false } | ||
anyhow = { version = "1.0.75", default-features = false } | ||
lockfile = { version = "0.4.0", default-features = false } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mun_compiler_daemon" | ||
version = "0.5.0" | ||
version = "0.6.0-dev" | ||
authors = ["The Mun Team <[email protected]>"] | ||
edition = "2021" | ||
description = "Functionality for continuously monitoring Mun source files for changes and triggering recompilation" | ||
|
@@ -16,8 +16,8 @@ categories = ["game-development", "mun"] | |
anyhow = { version = "1.0.75", default-features = false } | ||
ctrlc = { version = "3.4", default-features = false } | ||
log = { version = "0.4", default-features = false } | ||
mun_codegen = { version = "0.5.0", path = "../mun_codegen" } | ||
mun_compiler = { version = "0.5.0", path = "../mun_compiler" } | ||
mun_project = { version = "0.5.0", path = "../mun_project" } | ||
mun_hir = { version = "0.5.0", path = "../mun_hir" } | ||
mun_codegen = { version = "0.6.0-dev", path = "../mun_codegen" } | ||
mun_compiler = { version = "0.6.0-dev", path = "../mun_compiler" } | ||
mun_project = { version = "0.6.0-dev", path = "../mun_project" } | ||
mun_hir = { version = "0.6.0-dev", path = "../mun_hir" } | ||
notify = { version = "4.0", default-features = false } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mun_diagnostics" | ||
version = "0.5.0" | ||
version = "0.6.0-dev" | ||
authors = ["The Mun Team <[email protected]>"] | ||
edition = "2021" | ||
description = "Provides in-depth diagnostic information for compiler errors" | ||
|
@@ -13,5 +13,5 @@ keywords = ["game", "hot-reloading", "language", "mun", "diagnostics"] | |
categories = ["game-development", "mun"] | ||
|
||
[dependencies] | ||
mun_hir = { version = "0.5.0", path = "../mun_hir" } | ||
mun_syntax = { version = "0.5.0", path = "../mun_syntax" } | ||
mun_hir = { version = "0.6.0-dev", path = "../mun_hir" } | ||
mun_syntax = { version = "0.6.0-dev", path = "../mun_syntax" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mun_hir" | ||
version = "0.5.0" | ||
version = "0.6.0-dev" | ||
authors = ["The Mun Team <[email protected]>"] | ||
edition = "2021" | ||
description = "Provides high-level intermediate representation of Mun code" | ||
|
@@ -13,9 +13,9 @@ keywords = ["game", "hot-reloading", "language", "mun", "scripting"] | |
categories = ["game-development", "mun"] | ||
|
||
[dependencies] | ||
mun_syntax = { version = "0.5.0", path = "../mun_syntax" } | ||
mun_target = { version = "0.5.0", path = "../mun_target" } | ||
mun_paths = { version = "0.5.0", path="../mun_paths" } | ||
mun_syntax = { version = "0.6.0-dev", path = "../mun_syntax" } | ||
mun_target = { version = "0.6.0-dev", path = "../mun_target" } | ||
mun_paths = { version = "0.6.0-dev", path="../mun_paths" } | ||
drop_bomb = { version = "0.1.5", default-features = false } | ||
either = { version = "1.9.0", default-features = false } | ||
ena = { version = "0.14", default-features = false } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mun_language_server" | ||
version = "0.5.0" | ||
version = "0.6.0-dev" | ||
authors = ["The Mun Team <[email protected]>"] | ||
edition = "2021" | ||
description = "Provides a language server protocol server for the Mun language" | ||
|
@@ -13,13 +13,13 @@ keywords = ["game", "hot-reloading", "language", "mun", "scripting"] | |
categories = ["game-development", "mun"] | ||
|
||
[dependencies] | ||
mun_hir = { version = "0.5.0", path="../mun_hir" } | ||
mun_vfs = { version = "0.5.0", path = "../mun_vfs" } | ||
mun_project = { version = "0.5.0", path = "../mun_project" } | ||
mun_target = { version = "0.5.0", path = "../mun_target" } | ||
mun_syntax = { version = "0.5.0", path = "../mun_syntax" } | ||
mun_diagnostics = { version = "0.5.0", path = "../mun_diagnostics" } | ||
mun_paths = { version = "0.5.0", path="../mun_paths" } | ||
mun_hir = { version = "0.6.0-dev", path="../mun_hir" } | ||
mun_vfs = { version = "0.6.0-dev", path = "../mun_vfs" } | ||
mun_project = { version = "0.6.0-dev", path = "../mun_project" } | ||
mun_target = { version = "0.6.0-dev", path = "../mun_target" } | ||
mun_syntax = { version = "0.6.0-dev", path = "../mun_syntax" } | ||
mun_diagnostics = { version = "0.6.0-dev", path = "../mun_diagnostics" } | ||
mun_paths = { version = "0.6.0-dev", path="../mun_paths" } | ||
anyhow = { version = "1.0", default-features = false, features=["std"] } | ||
crossbeam-channel = { version = "0.5.9", default-features = false } | ||
log = { version = "0.4", default-features = false } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mun_libloader" | ||
version = "0.5.0" | ||
version = "0.6.0-dev" | ||
authors = ["The Mun Team <[email protected]>"] | ||
edition = "2021" | ||
description = "Functionality for loading Mun libraries" | ||
|
@@ -13,7 +13,7 @@ keywords = ["game", "hot-reloading", "language", "mun", "scripting"] | |
categories = ["game-development", "mun"] | ||
|
||
[dependencies] | ||
mun_abi = { version = "0.5.0", path = "../mun_abi" } | ||
mun_abi = { version = "0.6.0-dev", path = "../mun_abi" } | ||
anyhow = { version = "1.0", default-features = false, features = ["std"] } | ||
libloading = { version = "0.8.1", default-features = false } | ||
tempfile = { version = "3", default-features = false } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mun_memory" | ||
version = "0.5.0" | ||
version = "0.6.0-dev" | ||
authors = ["The Mun Team <[email protected]>"] | ||
edition = "2021" | ||
description = "Memory management functionality for Mun" | ||
|
@@ -13,8 +13,8 @@ keywords = ["game", "hot-reloading", "language", "mun", "scripting"] | |
categories = ["game-development", "mun"] | ||
|
||
[dependencies] | ||
mun_abi = { version = "0.5.0", path = "../mun_abi" } | ||
mun_capi_utils = { version = "0.5.0", path = "../mun_capi_utils" } | ||
mun_abi = { version = "0.6.0-dev", path = "../mun_abi" } | ||
mun_capi_utils = { version = "0.6.0-dev", path = "../mun_capi_utils" } | ||
itertools = { version = "0.12.0", default-features = false } | ||
lazy_static = { version = "1.4.0", default-features = false } | ||
once_cell = { version = "1.19.0", default-features = false } | ||
|
@@ -23,6 +23,6 @@ rustc-hash = { version = "1.1", default-features = false, features = ["std"] } | |
thiserror = { version = "1.0.51", default-features = false } | ||
|
||
[dev-dependencies] | ||
mun_capi_utils = { version = "0.5.0", path = "../mun_capi_utils", features = ["insta"] } | ||
mun_capi_utils = { version = "0.6.0-dev", path = "../mun_capi_utils", features = ["insta"] } | ||
insta = { version = "1.34.0", default-features = false, features = ["ron"] } | ||
paste = { version = "1.0", default-features = false } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mun_paths" | ||
version = "0.5.0" | ||
version = "0.6.0-dev" | ||
authors = ["The Mun Team <[email protected]>"] | ||
edition = "2021" | ||
description = "Provides convenience structures for handling relative- and absolute paths" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mun_project" | ||
version = "0.5.0" | ||
version = "0.6.0-dev" | ||
authors = ["The Mun Team <[email protected]>"] | ||
edition = "2021" | ||
description = "Provides convenience structures for Mun projects" | ||
|
@@ -13,7 +13,7 @@ keywords = ["game", "hot-reloading", "language", "mun", "scripting"] | |
categories = ["game-development", "mun"] | ||
|
||
[dependencies] | ||
mun_paths = { version = "0.5.0", path = "../mun_paths" } | ||
mun_paths = { version = "0.6.0-dev", path = "../mun_paths" } | ||
anyhow = { version = "1.0", default-features = false } | ||
rustc-hash = { version = "1.1.0", default-features = false, features = ["std"] } | ||
semver = { version = "1.0", default-features = false, features = ["serde"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mun_runtime" | ||
version = "0.5.0" | ||
version = "0.6.0-dev" | ||
authors = ["The Mun Team <[email protected]>"] | ||
edition = "2021" | ||
description = "A runtime for hot reloading and invoking Mun from Rust" | ||
|
@@ -13,11 +13,11 @@ keywords = ["game", "hot-reloading", "language", "mun", "scripting"] | |
categories = ["game-development", "mun"] | ||
|
||
[dependencies] | ||
mun_abi = { version = "0.5.0", path = "../mun_abi" } | ||
mun_libloader = { version = "0.5.0", path = "../mun_libloader" } | ||
mun_capi_utils = { version = "0.5.0", path = "../mun_capi_utils" } | ||
mun_memory = { version = "0.5.0", path = "../mun_memory" } | ||
mun_project = { version = "0.5.0", path = "../mun_project" } | ||
mun_abi = { version = "0.6.0-dev", path = "../mun_abi" } | ||
mun_libloader = { version = "0.6.0-dev", path = "../mun_libloader" } | ||
mun_capi_utils = { version = "0.6.0-dev", path = "../mun_capi_utils" } | ||
mun_memory = { version = "0.6.0-dev", path = "../mun_memory" } | ||
mun_project = { version = "0.6.0-dev", path = "../mun_project" } | ||
itertools = { version = "0.12.0", default-features = false, features = ["use_alloc"] } | ||
log = { version = "0.4", default-features = false } | ||
notify = "5.2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mun_runtime_capi" | ||
version = "0.5.0" | ||
version = "0.6.0-dev" | ||
authors = ["The Mun Team <[email protected]>"] | ||
edition = "2021" | ||
description = "Provides a C API for the Mun runtime" | ||
|
@@ -17,10 +17,10 @@ name = "mun_runtime" | |
crate-type = ["cdylib"] | ||
|
||
[dependencies] | ||
mun_abi = { version = "0.5.0", path = "../mun_abi" } | ||
mun_memory = { version = "0.5.0", path = "../mun_memory" } | ||
mun_runtime = { version = "0.5.0", path = "../mun_runtime" } | ||
mun_capi_utils = { version = "0.5.0", path = "../mun_capi_utils", features=["insta"]} | ||
mun_abi = { version = "0.6.0-dev", path = "../mun_abi" } | ||
mun_memory = { version = "0.6.0-dev", path = "../mun_memory" } | ||
mun_runtime = { version = "0.6.0-dev", path = "../mun_runtime" } | ||
mun_capi_utils = { version = "0.6.0-dev", path = "../mun_capi_utils", features=["insta"]} | ||
insta = { version = "1.34.0", default-features = false, features = ["ron"] } | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mun_skeptic" | ||
version = "0.5.0" | ||
version = "0.6.0-dev" | ||
authors = ["The Mun Team <[email protected]>"] | ||
edition = "2021" | ||
description = "Provides the ability to test Mun code snippets in an mdbook" | ||
|
@@ -19,6 +19,6 @@ bytecount = { version = "0.6.7", default-features = false } | |
itertools = { version = "0.12.0", default-features = false } | ||
mdbook = { version = "0.4.36", default-features = false } | ||
pulldown-cmark = { version = "0.9.3", default-features = false } | ||
mun_compiler = { version = "0.5.0", path = "../mun_compiler" } | ||
mun_runtime = { version = "0.5.0", path = "../mun_runtime" } | ||
mun_compiler = { version = "0.6.0-dev", path = "../mun_compiler" } | ||
mun_runtime = { version = "0.6.0-dev", path = "../mun_runtime" } | ||
tempdir = { version = "0.3.7", default-features = false } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mun_syntax" | ||
version = "0.5.0" | ||
version = "0.6.0-dev" | ||
authors = ["The Mun Team <[email protected]>"] | ||
edition = "2021" | ||
description = "Parsing functionality for the Mun programming language" | ||
|
@@ -13,7 +13,7 @@ keywords = ["game", "hot-reloading", "language", "mun", "scripting"] | |
categories = ["game-development", "mun"] | ||
|
||
[dependencies] | ||
mun_abi = { version = "0.5.0", path = "../mun_abi" } | ||
mun_abi = { version = "0.6.0-dev", path = "../mun_abi" } | ||
drop_bomb = { version = "0.1.5", default-features = false } | ||
itertools = { version = "0.12.0", default-features = false } | ||
ra_ap_text_edit = { version = "0.0.190", default-features = false } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mun_target" | ||
version = "0.5.0" | ||
version = "0.6.0-dev" | ||
authors = ["The Mun Team <[email protected]>"] | ||
edition = "2021" | ||
description = "Describes compilation targets for Mun" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mun_test" | ||
version = "0.5.0" | ||
version = "0.6.0-dev" | ||
authors = ["The Mun Team <[email protected]>"] | ||
edition = "2021" | ||
description = "Functionality for testing Mun code" | ||
|
@@ -13,10 +13,10 @@ keywords = ["game", "hot-reloading", "language", "mun", "scripting"] | |
categories = ["game-development", "mun"] | ||
|
||
[dependencies] | ||
mun_compiler = { version = "0.5.0", path = "../mun_compiler" } | ||
mun_runtime = { version = "0.5.0", path = "../mun_runtime" } | ||
mun_hir = { version = "0.5.0", path = "../mun_hir" } | ||
mun_paths = { version = "0.5.0", path = "../mun_paths" } | ||
mun_compiler = { version = "0.6.0-dev", path = "../mun_compiler" } | ||
mun_runtime = { version = "0.6.0-dev", path = "../mun_runtime" } | ||
mun_hir = { version = "0.6.0-dev", path = "../mun_hir" } | ||
mun_paths = { version = "0.6.0-dev", path = "../mun_paths" } | ||
anyhow = { version = "1.0", default-features = false } | ||
itertools = { version = "0.12.0", default-features = false } | ||
tempfile = { version = "3", default-features = false } |
Oops, something went wrong.