Skip to content

Commit 9321145

Browse files
committed
Release 2.11.3
1 parent 7b48568 commit 9321145

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "indexmap"
33
edition = "2021"
4-
version = "2.11.2"
4+
version = "2.11.3"
55
documentation = "https://docs.rs/indexmap/"
66
repository = "https://github.com/indexmap-rs/indexmap"
77
license = "Apache-2.0 OR MIT"
@@ -32,7 +32,7 @@ default-features = false
3232
# serde v1.0.220 is the first version that released with `serde_core`.
3333
# This is required to avoid conflict with other `serde` users which may require an older version.
3434
[target.'cfg(any())'.dependencies]
35-
serde = { version = "1.0.220", default-features = false }
35+
serde = { version = "1.0.220", default-features = false, optional = true }
3636

3737
[dev-dependencies]
3838
itertools = "0.14"
@@ -44,7 +44,7 @@ serde = { version = "1.0", default-features = false, features = ["derive"] }
4444
[features]
4545
default = ["std"]
4646
std = []
47-
serde = ["dep:serde_core"]
47+
serde = ["dep:serde_core", "dep:serde"]
4848

4949
# for testing only, of course
5050
test_debug = []

RELEASES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Releases
22

3+
## 2.11.3 (2025-09-15)
4+
5+
- Make the minimum `serde` version only apply when "serde" is enabled.
6+
37
## 2.11.2 (2025-09-15)
48

59
- Switched the "serde" feature to depend on `serde_core`, improving build

0 commit comments

Comments
 (0)