Skip to content

Commit f7e16e1

Browse files
committed
Prepare nestum 0.3.2 release
1 parent c5cbc9a commit f7e16e1

4 files changed

Lines changed: 12 additions & 5 deletions

File tree

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@ match self {
4242

4343
That is the whole pitch. `nestum` keeps the same nested-enum model, keeps the same compile-time invariant, and removes most of the tuple-wrapping tax.
4444

45+
## Start Here
46+
47+
- want the pitch quickly: read this intro and [When Nestum Is Worth It](#when-nestum-is-worth-it)
48+
- want to see real usage: jump to [Flagship Use Case](#flagship-use-case) and [Migration Guide](#migration-guide)
49+
- want framework integration: see [Cookbooks](#cookbooks)
50+
- want the mechanism and limits: read [Authority Surface](#authority-surface) and [Limitations](#limitations)
51+
4552
## When Nestum Is Worth It
4653

4754
Use `nestum` when all of these are true:

nestum-examples/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "nestum-examples"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
edition = "2024"
55
publish = false
66

77
[dependencies]
88
axum = "0.8"
99
clap = { version = "4.5", features = ["derive"] }
10-
nestum = { path = "../nestum", version = "0.3.1" }
10+
nestum = { path = "../nestum", version = "0.3.2" }
1111
serde = { version = "1", features = ["derive"] }
1212
sqlx = { version = "0.8", default-features = false, features = ["sqlite", "runtime-tokio-rustls", "macros"] }
1313
tokio = { version = "1", features = ["macros", "rt-multi-thread", "net", "sync"] }

nestum/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nestum"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
edition = "2024"
55
description = "Proc-macro for nested enum paths like Enum1::Variant1::VariantA"
66
license = "MIT"

0 commit comments

Comments
 (0)