diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 000000000..6c8e2a1de --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,3 @@ +[workspace] +resolver = "2" +members = ["snmalloc-rs", "snmalloc-rs/snmalloc-sys", "snmalloc-rs/xtask"] diff --git a/snmalloc-rs/CHANGELOG.md b/snmalloc-rs/CHANGELOG.md index f843daf6e..7a0eed4c7 100644 --- a/snmalloc-rs/CHANGELOG.md +++ b/snmalloc-rs/CHANGELOG.md @@ -1,5 +1,10 @@ ## Changelog +### 0.7.4 + +- Tracking upstream to match version 0.7.4. +- SnMalloc has been moved to upstream repository. Future releases will track upstream release directly. + ### 0.3.8 - Tracking upstream to match version 0.7.1 diff --git a/snmalloc-rs/Cargo.toml b/snmalloc-rs/Cargo.toml index 0a442a03a..43048fc30 100644 --- a/snmalloc-rs/Cargo.toml +++ b/snmalloc-rs/Cargo.toml @@ -12,9 +12,6 @@ repository = "https://github.com/microsoft/snmalloc" readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html -[workspace] -members = ["snmalloc-sys", "xtask"] - [dependencies] snmalloc-sys = { version = "0.7.4", path = "snmalloc-sys", default-features = false } diff --git a/snmalloc-rs/README.md b/snmalloc-rs/README.md index cf67d0f62..c429d756b 100644 --- a/snmalloc-rs/README.md +++ b/snmalloc-rs/README.md @@ -56,7 +56,7 @@ To use `snmalloc-rs` add it as a dependency: ```toml # Cargo.toml [dependencies] -snmalloc-rs = "0.3.8" +snmalloc-rs = "0.7.4" ``` To set `SnMalloc` as the global allocator add this to your project: