diff --git a/crates/mun/Cargo.toml b/crates/mun/Cargo.toml index 837cbea7..51538a36 100644 --- a/crates/mun/Cargo.toml +++ b/crates/mun/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mun" -version = "0.4.0" +version = "0.5.0-dev" authors = ["The Mun Team "] 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.4.0", path = "../mun_abi" } -mun_compiler = { version = "0.4.0", path = "../mun_compiler" } -mun_compiler_daemon = { version = "0.4.0", path = "../mun_compiler_daemon" } -mun_runtime = { version = "0.4.0", path = "../mun_runtime" } -mun_language_server = { version = "0.4.0", path = "../mun_language_server" } -mun_project = { version = "0.4.0", path = "../mun_project" } +mun_abi = { version = "0.5.0-dev", path = "../mun_abi" } +mun_compiler = { version = "0.5.0-dev", path = "../mun_compiler" } +mun_compiler_daemon = { version = "0.5.0-dev", path = "../mun_compiler_daemon" } +mun_runtime = { version = "0.5.0-dev", path = "../mun_runtime" } +mun_language_server = { version = "0.5.0-dev", path = "../mun_language_server" } +mun_project = { version = "0.5.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.4.0" } +mun_skeptic = { path = "../mun_skeptic", version = "0.5.0-dev" } [build-dependencies] -mun_skeptic = { path = "../mun_skeptic", version = "0.4.0" } +mun_skeptic = { path = "../mun_skeptic", version = "0.5.0-dev" } diff --git a/crates/mun_abi/Cargo.toml b/crates/mun_abi/Cargo.toml index c93ee718..3a66c239 100644 --- a/crates/mun_abi/Cargo.toml +++ b/crates/mun_abi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mun_abi" -version = "0.4.0" +version = "0.5.0-dev" authors = ["The Mun Team "] edition = "2021" description = "Rust wrapper for the Mun ABI" diff --git a/crates/mun_capi_utils/Cargo.toml b/crates/mun_capi_utils/Cargo.toml index 65c1d757..2ec06035 100644 --- a/crates/mun_capi_utils/Cargo.toml +++ b/crates/mun_capi_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mun_capi_utils" -version = "0.4.0" +version = "0.5.0-dev" edition = "2021" authors = ["The Mun Team "] description = "Common functionality between C api crates." diff --git a/crates/mun_codegen/Cargo.toml b/crates/mun_codegen/Cargo.toml index 8c939a97..48331ed1 100644 --- a/crates/mun_codegen/Cargo.toml +++ b/crates/mun_codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mun_codegen" -version = "0.4.0" +version = "0.5.0-dev" authors = ["The Mun Team "] 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.4.0", path = "../mun_abi" } +mun_abi = { version = "0.5.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.4.0", path = "../mun_hir" } +mun_hir = { version = "0.5.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.4.0", path = "../mun_codegen_macros" } -mun_target = { version = "0.4.0", path = "../mun_target" } +mun_codegen_macros = { version = "0.5.0-dev", path = "../mun_codegen_macros" } +mun_target = { version = "0.5.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.4.0", path = "../mun_paths" } +mun_paths = { version = "0.5.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 } diff --git a/crates/mun_codegen_macros/Cargo.toml b/crates/mun_codegen_macros/Cargo.toml index 48d65395..8dc945e3 100644 --- a/crates/mun_codegen_macros/Cargo.toml +++ b/crates/mun_codegen_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mun_codegen_macros" -version = "0.4.0" +version = "0.5.0-dev" authors = ["The Mun Team "] edition = "2021" description = "Macros used by mun code generation" diff --git a/crates/mun_compiler/Cargo.toml b/crates/mun_compiler/Cargo.toml index 91dda7bb..a51520ab 100644 --- a/crates/mun_compiler/Cargo.toml +++ b/crates/mun_compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mun_compiler" -version = "0.4.0" +version = "0.5.0-dev" authors = ["The Mun Team "] 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.4.0", path = "../mun_codegen" } -mun_syntax = { version = "0.4.0", path = "../mun_syntax" } -mun_hir = { version = "0.4.0", path = "../mun_hir" } -mun_paths = { version = "0.4.0", path = "../mun_paths" } -mun_target = { version = "0.4.0", path = "../mun_target" } -mun_project = { version = "0.4.0", path = "../mun_project" } -mun_diagnostics = { version = "0.4.0", path = "../mun_diagnostics" } +mun_codegen = { version = "0.5.0-dev", path = "../mun_codegen" } +mun_syntax = { version = "0.5.0-dev", path = "../mun_syntax" } +mun_hir = { version = "0.5.0-dev", path = "../mun_hir" } +mun_paths = { version = "0.5.0-dev", path = "../mun_paths" } +mun_target = { version = "0.5.0-dev", path = "../mun_target" } +mun_project = { version = "0.5.0-dev", path = "../mun_project" } +mun_diagnostics = { version = "0.5.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 } diff --git a/crates/mun_compiler_daemon/Cargo.toml b/crates/mun_compiler_daemon/Cargo.toml index fa1e2487..585ddd1e 100644 --- a/crates/mun_compiler_daemon/Cargo.toml +++ b/crates/mun_compiler_daemon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mun_compiler_daemon" -version = "0.4.0" +version = "0.5.0-dev" authors = ["The Mun Team "] 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.4.0", path = "../mun_codegen" } -mun_compiler = { version = "0.4.0", path = "../mun_compiler" } -mun_project = { version = "0.4.0", path = "../mun_project" } -mun_hir = { version = "0.4.0", path = "../mun_hir" } +mun_codegen = { version = "0.5.0-dev", path = "../mun_codegen" } +mun_compiler = { version = "0.5.0-dev", path = "../mun_compiler" } +mun_project = { version = "0.5.0-dev", path = "../mun_project" } +mun_hir = { version = "0.5.0-dev", path = "../mun_hir" } notify = { version = "4.0", default-features = false } diff --git a/crates/mun_diagnostics/Cargo.toml b/crates/mun_diagnostics/Cargo.toml index f407000c..12222f5c 100644 --- a/crates/mun_diagnostics/Cargo.toml +++ b/crates/mun_diagnostics/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mun_diagnostics" -version = "0.4.0" +version = "0.5.0-dev" authors = ["The Mun Team "] 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.4.0", path = "../mun_hir" } -mun_syntax = { version = "0.4.0", path = "../mun_syntax" } +mun_hir = { version = "0.5.0-dev", path = "../mun_hir" } +mun_syntax = { version = "0.5.0-dev", path = "../mun_syntax" } diff --git a/crates/mun_hir/Cargo.toml b/crates/mun_hir/Cargo.toml index 41072e48..95c51bbb 100644 --- a/crates/mun_hir/Cargo.toml +++ b/crates/mun_hir/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mun_hir" -version = "0.4.0" +version = "0.5.0-dev" authors = ["The Mun Team "] 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.4.0", path = "../mun_syntax" } -mun_target = { version = "0.4.0", path = "../mun_target" } -mun_paths = { version = "0.4.0", path="../mun_paths" } +mun_syntax = { version = "0.5.0-dev", path = "../mun_syntax" } +mun_target = { version = "0.5.0-dev", path = "../mun_target" } +mun_paths = { version = "0.5.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 } diff --git a/crates/mun_language_server/Cargo.toml b/crates/mun_language_server/Cargo.toml index 2a2f9166..8bb205d8 100644 --- a/crates/mun_language_server/Cargo.toml +++ b/crates/mun_language_server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mun_language_server" -version = "0.4.0" +version = "0.5.0-dev" authors = ["The Mun Team "] 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.4.0", path="../mun_hir" } -mun_vfs = { version = "0.4.0", path = "../mun_vfs" } -mun_project = { version = "0.4.0", path = "../mun_project" } -mun_target = { version = "0.4.0", path = "../mun_target" } -mun_syntax = { version = "0.4.0", path = "../mun_syntax" } -mun_diagnostics = { version = "0.4.0", path = "../mun_diagnostics" } -mun_paths = { version = "0.4.0", path="../mun_paths" } +mun_hir = { version = "0.5.0-dev", path="../mun_hir" } +mun_vfs = { version = "0.5.0-dev", path = "../mun_vfs" } +mun_project = { version = "0.5.0-dev", path = "../mun_project" } +mun_target = { version = "0.5.0-dev", path = "../mun_target" } +mun_syntax = { version = "0.5.0-dev", path = "../mun_syntax" } +mun_diagnostics = { version = "0.5.0-dev", path = "../mun_diagnostics" } +mun_paths = { version = "0.5.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 } diff --git a/crates/mun_libloader/Cargo.toml b/crates/mun_libloader/Cargo.toml index a144fdcb..a52f5821 100644 --- a/crates/mun_libloader/Cargo.toml +++ b/crates/mun_libloader/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mun_libloader" -version = "0.4.0" +version = "0.5.0-dev" authors = ["The Mun Team "] 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.4.0", path = "../mun_abi" } +mun_abi = { version = "0.5.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 } diff --git a/crates/mun_memory/Cargo.toml b/crates/mun_memory/Cargo.toml index 905b662b..69e9b2bd 100644 --- a/crates/mun_memory/Cargo.toml +++ b/crates/mun_memory/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mun_memory" -version = "0.4.0" +version = "0.5.0-dev" authors = ["The Mun Team "] 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.4.0", path = "../mun_abi" } -mun_capi_utils = { version = "0.4.0", path = "../mun_capi_utils" } +mun_abi = { version = "0.5.0-dev", path = "../mun_abi" } +mun_capi_utils = { version = "0.5.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.4.0", path = "../mun_capi_utils", features = ["insta"] } +mun_capi_utils = { version = "0.5.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 } diff --git a/crates/mun_paths/Cargo.toml b/crates/mun_paths/Cargo.toml index 96eebaaf..faeb8596 100644 --- a/crates/mun_paths/Cargo.toml +++ b/crates/mun_paths/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mun_paths" -version = "0.4.0" +version = "0.5.0-dev" authors = ["The Mun Team "] edition = "2021" description = "Provides convenience structures for handling relative- and absolute paths" diff --git a/crates/mun_project/Cargo.toml b/crates/mun_project/Cargo.toml index bfb812c1..6f625e84 100644 --- a/crates/mun_project/Cargo.toml +++ b/crates/mun_project/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mun_project" -version = "0.4.0" +version = "0.5.0-dev" authors = ["The Mun Team "] 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.4.0", path = "../mun_paths" } +mun_paths = { version = "0.5.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"] } diff --git a/crates/mun_runtime/Cargo.toml b/crates/mun_runtime/Cargo.toml index fba3ed41..94ab9d36 100644 --- a/crates/mun_runtime/Cargo.toml +++ b/crates/mun_runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mun_runtime" -version = "0.4.0" +version = "0.5.0-dev" authors = ["The Mun Team "] 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.4.0", path = "../mun_abi" } -mun_libloader = { version = "0.4.0", path = "../mun_libloader" } -mun_capi_utils = { version = "0.4.0", path = "../mun_capi_utils" } -mun_memory = { version = "0.4.0", path = "../mun_memory" } -mun_project = { version = "0.4.0", path = "../mun_project" } +mun_abi = { version = "0.5.0-dev", path = "../mun_abi" } +mun_libloader = { version = "0.5.0-dev", path = "../mun_libloader" } +mun_capi_utils = { version = "0.5.0-dev", path = "../mun_capi_utils" } +mun_memory = { version = "0.5.0-dev", path = "../mun_memory" } +mun_project = { version = "0.5.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" diff --git a/crates/mun_runtime_capi/Cargo.toml b/crates/mun_runtime_capi/Cargo.toml index b4c70410..fbfcfd93 100644 --- a/crates/mun_runtime_capi/Cargo.toml +++ b/crates/mun_runtime_capi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mun_runtime_capi" -version = "0.4.0" +version = "0.5.0-dev" authors = ["The Mun Team "] 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.4.0", path = "../mun_abi" } -mun_memory = { version = "0.4.0", path = "../mun_memory" } -mun_runtime = { version = "0.4.0", path = "../mun_runtime" } -mun_capi_utils = { version = "0.4.0", path = "../mun_capi_utils", features=["insta"]} +mun_abi = { version = "0.5.0-dev", path = "../mun_abi" } +mun_memory = { version = "0.5.0-dev", path = "../mun_memory" } +mun_runtime = { version = "0.5.0-dev", path = "../mun_runtime" } +mun_capi_utils = { version = "0.5.0-dev", path = "../mun_capi_utils", features=["insta"]} insta = { version = "1.34.0", default-features = false, features = ["ron"] } [dev-dependencies] diff --git a/crates/mun_skeptic/Cargo.toml b/crates/mun_skeptic/Cargo.toml index f63b049c..1567f0a1 100644 --- a/crates/mun_skeptic/Cargo.toml +++ b/crates/mun_skeptic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mun_skeptic" -version = "0.4.0" +version = "0.5.0-dev" authors = ["The Mun Team "] 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.4.0", path = "../mun_compiler" } -mun_runtime = { version = "0.4.0", path = "../mun_runtime" } +mun_compiler = { version = "0.5.0-dev", path = "../mun_compiler" } +mun_runtime = { version = "0.5.0-dev", path = "../mun_runtime" } tempdir = { version = "0.3.7", default-features = false } diff --git a/crates/mun_syntax/Cargo.toml b/crates/mun_syntax/Cargo.toml index 5629883e..890a45b6 100644 --- a/crates/mun_syntax/Cargo.toml +++ b/crates/mun_syntax/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mun_syntax" -version = "0.4.0" +version = "0.5.0-dev" authors = ["The Mun Team "] 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.4.0", path = "../mun_abi" } +mun_abi = { version = "0.5.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 } diff --git a/crates/mun_target/Cargo.toml b/crates/mun_target/Cargo.toml index 01778f37..7f450fc0 100644 --- a/crates/mun_target/Cargo.toml +++ b/crates/mun_target/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mun_target" -version = "0.4.0" +version = "0.5.0-dev" authors = ["The Mun Team "] edition = "2021" description = "Describes compilation targets for Mun" diff --git a/crates/mun_test/Cargo.toml b/crates/mun_test/Cargo.toml index 160bf2e2..578a08db 100644 --- a/crates/mun_test/Cargo.toml +++ b/crates/mun_test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mun_test" -version = "0.4.0" +version = "0.5.0-dev" authors = ["The Mun Team "] 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.4.0", path = "../mun_compiler" } -mun_runtime = { version = "0.4.0", path = "../mun_runtime" } -mun_hir = { version = "0.4.0", path = "../mun_hir" } -mun_paths = { version = "0.4.0", path = "../mun_paths" } +mun_compiler = { version = "0.5.0-dev", path = "../mun_compiler" } +mun_runtime = { version = "0.5.0-dev", path = "../mun_runtime" } +mun_hir = { version = "0.5.0-dev", path = "../mun_hir" } +mun_paths = { version = "0.5.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 } diff --git a/crates/mun_vfs/Cargo.toml b/crates/mun_vfs/Cargo.toml index 232d4178..5c0dbda1 100644 --- a/crates/mun_vfs/Cargo.toml +++ b/crates/mun_vfs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mun_vfs" -version = "0.4.0" +version = "0.5.0-dev" authors = ["The Mun Team "] edition = "2021" description = "Provides an in-memory filesystem" @@ -13,7 +13,7 @@ keywords = ["game", "hot-reloading", "language", "mun", "scripting"] categories = ["game-development", "mun"] [dependencies] -mun_paths = { version = "0.4.0", path="../mun_paths" } +mun_paths = { version = "0.5.0-dev", path="../mun_paths" } crossbeam-channel = { version = "0.5.9", default-features = false } log = { version = "0.4.20", default-features = false } notify = "5.2.0"