Skip to content

Commit

Permalink
Release 0.0.97
Browse files Browse the repository at this point in the history
  • Loading branch information
udoprog committed Mar 20, 2024
1 parent 87a680b commit a88f5cc
Show file tree
Hide file tree
Showing 16 changed files with 80 additions and 80 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ Add the following to your `Cargo.toml` using the [format](#formats) you want
to use:

```toml
musli = "0.0.96"
musli-wire = "0.0.96"
musli = "0.0.97"
musli-wire = "0.0.97"
```

<br>
Expand Down
8 changes: 4 additions & 4 deletions crates/musli-allocator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "musli-allocator"
version = "0.0.96"
version = "0.0.97"
authors = ["John-John Tedro <[email protected]>"]
edition = "2021"
description = """
Expand All @@ -11,13 +11,13 @@ readme = "README.md"
homepage = "https://github.com/udoprog/musli"
repository = "https://github.com/udoprog/musli"
license = "MIT OR Apache-2.0"
keywords = ["no-std::no-alloc", "no_std", "serialization"]
categories = ["memory-management", "no-std", "rust-patterns"]
keywords = ["no_std", "serialization"]
categories = ["memory-management", "no-std", "no-std::no-alloc", "rust-patterns"]

[features]
default = ["std", "alloc"]
std = ["musli/std"]
alloc = ["musli/alloc"]

[dependencies]
musli = { path = "../musli", version = "0.0.96", default-features = false }
musli = { path = "../musli", version = "0.0.97", default-features = false }
10 changes: 5 additions & 5 deletions crates/musli-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "musli-common"
version = "0.0.96"
version = "0.0.97"
authors = ["John-John Tedro <[email protected]>"]
edition = "2021"
rust-version = "1.76"
Expand All @@ -12,17 +12,17 @@ readme = "README.md"
homepage = "https://github.com/udoprog/musli"
repository = "https://github.com/udoprog/musli"
license = "MIT OR Apache-2.0"
keywords = ["no-std::no-alloc", "no_std", "serialization"]
categories = ["encoding", "no-std"]
keywords = ["no_std", "serialization"]
categories = ["encoding", "no-std", "no-std::no-alloc"]

[features]
default = ["std", "alloc"]
std = ["musli/std", "simdutf8?/std", "musli-allocator/std"]
alloc = ["musli-allocator/alloc"]

[dependencies]
musli = { path = "../musli", version = "0.0.96", default-features = false }
musli-allocator = { path = "../musli-allocator", version = "0.0.96", default-features = false }
musli = { path = "../musli", version = "0.0.97", default-features = false }
musli-allocator = { path = "../musli-allocator", version = "0.0.97", default-features = false }
simdutf8 = { version = "0.1.4", optional = true, default-features = false }

[dev-dependencies]
Expand Down
14 changes: 7 additions & 7 deletions crates/musli-descriptive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "musli-descriptive"
version = "0.0.96"
version = "0.0.97"
authors = ["John-John Tedro <[email protected]>"]
edition = "2021"
rust-version = "1.76"
Expand All @@ -12,8 +12,8 @@ readme = "README.md"
homepage = "https://github.com/udoprog/musli"
repository = "https://github.com/udoprog/musli"
license = "MIT OR Apache-2.0"
keywords = ["no-std::no-alloc", "no_std", "serialization"]
categories = ["encoding", "no-std"]
keywords = ["no_std", "serialization"]
categories = ["encoding", "no-std", "no-std::no-alloc"]

[features]
default = ["std", "alloc", "simdutf8", "musli-value"]
Expand All @@ -23,7 +23,7 @@ test = []
simdutf8 = ["musli-common/simdutf8"]

[dependencies]
musli = { path = "../musli", version = "0.0.96", default-features = false }
musli-common = { path = "../musli-common", version = "0.0.96", default-features = false }
musli-storage = { path = "../musli-storage", version = "0.0.96", default-features = false }
musli-value = { path = "../musli-value", version = "0.0.96", default-features = false, optional = true }
musli = { path = "../musli", version = "0.0.97", default-features = false }
musli-common = { path = "../musli-common", version = "0.0.97", default-features = false }
musli-storage = { path = "../musli-storage", version = "0.0.97", default-features = false }
musli-value = { path = "../musli-value", version = "0.0.97", default-features = false, optional = true }
12 changes: 6 additions & 6 deletions crates/musli-json/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "musli-json"
version = "0.0.96"
version = "0.0.97"
authors = ["John-John Tedro <[email protected]>"]
edition = "2021"
rust-version = "1.76"
Expand All @@ -12,8 +12,8 @@ readme = "README.md"
homepage = "https://github.com/udoprog/musli"
repository = "https://github.com/udoprog/musli"
license = "MIT OR Apache-2.0"
keywords = ["no-std::no-alloc", "no_std", "serialization"]
categories = ["encoding", "no-std"]
keywords = ["no_std", "serialization"]
categories = ["encoding", "no-std", "no-std::no-alloc"]

[features]
default = ["std", "alloc", "simdutf8", "musli-value", "parse-full"]
Expand All @@ -24,9 +24,9 @@ simdutf8 = ["musli-common/simdutf8"]
parse-full = []

[dependencies]
musli = { path = "../musli", version = "0.0.96", default-features = false }
musli-common = { path = "../musli-common", version = "0.0.96", default-features = false }
musli-value = { path = "../musli-value", version = "0.0.96", default-features = false, optional = true }
musli = { path = "../musli", version = "0.0.97", default-features = false }
musli-common = { path = "../musli-common", version = "0.0.97", default-features = false }
musli-value = { path = "../musli-value", version = "0.0.97", default-features = false, optional = true }

itoa = "1.0.9"
ryu = "1.0.15"
Expand Down
6 changes: 3 additions & 3 deletions crates/musli-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "musli-macros"
version = "0.0.96"
version = "0.0.97"
authors = ["John-John Tedro <[email protected]>"]
edition = "2021"
rust-version = "1.76"
Expand All @@ -12,8 +12,8 @@ readme = "README.md"
homepage = "https://github.com/udoprog/musli"
repository = "https://github.com/udoprog/musli"
license = "MIT OR Apache-2.0"
keywords = ["no-std::no-alloc", "no_std", "serialization"]
categories = ["encoding", "no-std"]
keywords = ["no_std", "serialization"]
categories = ["encoding", "no-std", "no-std::no-alloc"]

[lib]
proc-macro = true
Expand Down
10 changes: 5 additions & 5 deletions crates/musli-serde/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "musli-serde"
version = "0.0.96"
version = "0.0.97"
authors = ["John-John Tedro <[email protected]>"]
edition = "2021"
description = """
Expand All @@ -11,17 +11,17 @@ readme = "README.md"
homepage = "https://github.com/udoprog/musli"
repository = "https://github.com/udoprog/musli"
license = "MIT OR Apache-2.0"
keywords = ["no-std::no-alloc", "no_std", "serde", "serialization"]
categories = ["encoding", "encoding", "no-std"]
keywords = ["no_std", "serde", "serialization"]
categories = ["encoding", "encoding", "no-std", "no-std::no-alloc"]

[features]
default = ["std", "alloc"]
std = ["musli/std", "serde/std"]
alloc = ["musli/alloc", "serde/alloc"]

[dependencies]
musli = { path = "../musli", version = "0.0.96", default-features = false }
musli-common = { path = "../musli-common", version = "0.0.96", default-features = false }
musli = { path = "../musli", version = "0.0.97", default-features = false }
musli-common = { path = "../musli-common", version = "0.0.97", default-features = false }
serde = { version = "1.0.197", default-features = false }

[dev-dependencies]
Expand Down
10 changes: 5 additions & 5 deletions crates/musli-storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "musli-storage"
version = "0.0.96"
version = "0.0.97"
authors = ["John-John Tedro <[email protected]>"]
edition = "2021"
rust-version = "1.76"
Expand All @@ -12,8 +12,8 @@ readme = "README.md"
homepage = "https://github.com/udoprog/musli"
repository = "https://github.com/udoprog/musli"
license = "MIT OR Apache-2.0"
keywords = ["no-std::no-alloc", "no_std", "serialization"]
categories = ["encoding", "no-std"]
keywords = ["no_std", "serialization"]
categories = ["encoding", "no-std", "no-std::no-alloc"]

[features]
default = ["std", "alloc", "simdutf8"]
Expand All @@ -23,5 +23,5 @@ test = []
simdutf8 = ["musli-common/simdutf8"]

[dependencies]
musli = { path = "../musli", version = "0.0.96", default-features = false }
musli-common = { path = "../musli-common", version = "0.0.96", default-features = false }
musli = { path = "../musli", version = "0.0.97", default-features = false }
musli-common = { path = "../musli-common", version = "0.0.97", default-features = false }
12 changes: 6 additions & 6 deletions crates/musli-value/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "musli-value"
version = "0.0.96"
version = "0.0.97"
authors = ["John-John Tedro <[email protected]>"]
edition = "2021"
rust-version = "1.76"
Expand All @@ -12,8 +12,8 @@ readme = "README.md"
homepage = "https://github.com/udoprog/musli"
repository = "https://github.com/udoprog/musli"
license = "MIT OR Apache-2.0"
keywords = ["no-std::no-alloc", "no_std", "serialization"]
categories = ["encoding", "no-std"]
keywords = ["no_std", "serialization"]
categories = ["encoding", "no-std", "no-std::no-alloc"]

[features]
default = ["std", "alloc"]
Expand All @@ -22,9 +22,9 @@ alloc = ["musli/alloc", "musli-storage/alloc", "musli-common/alloc"]
test = []

[dependencies]
musli = { path = "../musli", version = "0.0.96", default-features = false }
musli-common = { path = "../musli-common", version = "0.0.96", default-features = false }
musli-storage = { path = "../musli-storage", version = "0.0.96", default-features = false }
musli = { path = "../musli", version = "0.0.97", default-features = false }
musli-common = { path = "../musli-common", version = "0.0.97", default-features = false }
musli-storage = { path = "../musli-storage", version = "0.0.97", default-features = false }

itoa = "1.0.9"
ryu = "1.0.15"
Expand Down
12 changes: 6 additions & 6 deletions crates/musli-wire/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "musli-wire"
version = "0.0.96"
version = "0.0.97"
authors = ["John-John Tedro <[email protected]>"]
edition = "2021"
rust-version = "1.76"
Expand All @@ -12,8 +12,8 @@ readme = "README.md"
homepage = "https://github.com/udoprog/musli"
repository = "https://github.com/udoprog/musli"
license = "MIT OR Apache-2.0"
keywords = ["no-std::no-alloc", "no_std", "serialization"]
categories = ["encoding", "no-std"]
keywords = ["no_std", "serialization"]
categories = ["encoding", "no-std", "no-std::no-alloc"]

[features]
default = ["std", "alloc", "simdutf8"]
Expand All @@ -23,6 +23,6 @@ test = []
simdutf8 = ["musli-common/simdutf8"]

[dependencies]
musli = { path = "../musli", version = "0.0.96", default-features = false }
musli-common = { path = "../musli-common", version = "0.0.96", default-features = false }
musli-storage = { path = "../musli-storage", version = "0.0.96", default-features = false }
musli = { path = "../musli", version = "0.0.97", default-features = false }
musli-common = { path = "../musli-common", version = "0.0.97", default-features = false }
musli-storage = { path = "../musli-storage", version = "0.0.97", default-features = false }
6 changes: 3 additions & 3 deletions crates/musli-zerocopy-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "musli-zerocopy-macros"
version = "0.0.96"
version = "0.0.97"
authors = ["John-John Tedro <[email protected]>"]
edition = "2021"
rust-version = "1.76"
Expand All @@ -12,8 +12,8 @@ readme = "README.md"
homepage = "https://github.com/udoprog/musli"
repository = "https://github.com/udoprog/musli"
license = "MIT OR Apache-2.0"
keywords = ["no-std::no-alloc", "no_std", "serialization", "zerocopy"]
categories = ["encoding", "no-std"]
keywords = ["no_std", "serialization", "zerocopy"]
categories = ["encoding", "no-std", "no-std::no-alloc"]

[lib]
proc-macro = true
Expand Down
10 changes: 5 additions & 5 deletions crates/musli-zerocopy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "musli-zerocopy"
version = "0.0.96"
version = "0.0.97"
authors = ["John-John Tedro <[email protected]>"]
edition = "2021"
rust-version = "1.76"
Expand All @@ -12,19 +12,19 @@ readme = "README.md"
homepage = "https://github.com/udoprog/musli"
repository = "https://github.com/udoprog/musli"
license = "MIT OR Apache-2.0"
keywords = ["no-std::no-alloc", "no_std", "serialization", "zerocopy"]
categories = ["encoding", "no-std"]
keywords = ["no_std", "serialization", "zerocopy"]
categories = ["encoding", "no-std", "no-std::no-alloc"]

[features]
default = ["std", "alloc"]
std = []
alloc = []

[dependencies]
musli-zerocopy-macros = { version = "=0.0.96", path = "../musli-zerocopy-macros" }
musli-zerocopy-macros = { version = "=0.0.97", path = "../musli-zerocopy-macros" }
rand = { version = "0.8.5", default-features = false, features = ["small_rng"] }

[dev-dependencies]
anyhow = "1.0.75"
trybuild = "1.0.85"
musli-zerocopy-macros = { version = "=0.0.96", path = "../musli-zerocopy-macros", features = ["sneaky-fields"] }
musli-zerocopy-macros = { version = "=0.0.97", path = "../musli-zerocopy-macros", features = ["sneaky-fields"] }
8 changes: 4 additions & 4 deletions crates/musli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "musli"
version = "0.0.96"
version = "0.0.97"
authors = ["John-John Tedro <[email protected]>"]
edition = "2021"
rust-version = "1.76"
Expand All @@ -12,13 +12,13 @@ readme = "README.md"
homepage = "https://github.com/udoprog/musli"
repository = "https://github.com/udoprog/musli"
license = "MIT OR Apache-2.0"
keywords = ["no-std::no-alloc", "no_std", "serialization"]
categories = ["encoding", "no-std"]
keywords = ["no_std", "serialization"]
categories = ["encoding", "no-std", "no-std::no-alloc"]

[features]
default = ["std", "alloc"]
std = []
alloc = []

[dependencies]
musli-macros = { version = "=0.0.96", path = "../musli-macros" }
musli-macros = { version = "=0.0.97", path = "../musli-macros" }
4 changes: 2 additions & 2 deletions crates/musli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ Add the following to your `Cargo.toml` using the [format](#formats) you want
to use:

```toml
musli = "0.0.96"
musli-wire = "0.0.96"
musli = "0.0.97"
musli-wire = "0.0.97"
```

<br>
Expand Down
4 changes: 2 additions & 2 deletions crates/musli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
//! to use:
//!
//! ```toml
//! musli = "0.0.96"
//! musli-wire = "0.0.96"
//! musli = "0.0.97"
//! musli-wire = "0.0.97"
//! ```
//!
//! <br>
Expand Down
Loading

0 comments on commit a88f5cc

Please sign in to comment.