Mirror the curve, and route the step builder to where each kind keeps it
makeover-layout 0.32.0. `quasi_router::Curve` is the owned mirror, holding its
step as a `String` the way every other member here does.
`Field::step` routes rather than splitting into two builders: a range's
granularity lives on its curve now and a typed value's stays where it was, and
a call site saying "this moves in steps of 0.001" means the same thing either
way. Every existing `.step()` call is correct unchanged, which is why no
described screen in this workspace or in audiofiles needed touching.
The size lint on `Outcome` is `#[expect]`ed with the reasoning: adding a curve
to a field crossed a threshold whose margin was already thin, and boxing the
node costs an allocation per response and breaks every host's match.
23 test binaries pass, clippy clean, fmt clean.
14 files changed,
+155 insertions,
-55 deletions
| 2605 |
2605 |
|
|
| 2606 |
2606 |
|
[[package]]
|
| 2607 |
2607 |
|
name = "makeover-immediate"
|
| 2608 |
|
- |
version = "0.30.0"
|
|
2608 |
+ |
version = "0.31.0"
|
| 2609 |
2609 |
|
dependencies = [
|
| 2610 |
2610 |
|
"egui",
|
| 2611 |
2611 |
|
"egui_extras",
|
| 2614 |
2614 |
|
|
| 2615 |
2615 |
|
[[package]]
|
| 2616 |
2616 |
|
name = "makeover-layout"
|
| 2617 |
|
- |
version = "0.31.0"
|
|
2617 |
+ |
version = "0.32.0"
|
| 2618 |
2618 |
|
|
| 2619 |
2619 |
|
[[package]]
|
| 2620 |
2620 |
|
name = "makeover-touch"
|
| 2621 |
|
- |
version = "0.22.0"
|
|
2621 |
+ |
version = "0.22.1"
|
| 2622 |
2622 |
|
dependencies = [
|
| 2623 |
2623 |
|
"makeover-geometry",
|
| 2624 |
2624 |
|
"makeover-layout",
|
| 2626 |
2626 |
|
|
| 2627 |
2627 |
|
[[package]]
|
| 2628 |
2628 |
|
name = "makeover-tui"
|
| 2629 |
|
- |
version = "0.30.0"
|
|
2629 |
+ |
version = "0.31.0"
|
| 2630 |
2630 |
|
dependencies = [
|
| 2631 |
2631 |
|
"makeover",
|
| 2632 |
2632 |
|
"makeover-layout",
|
| 2635 |
2635 |
|
|
| 2636 |
2636 |
|
[[package]]
|
| 2637 |
2637 |
|
name = "makeover-webview"
|
| 2638 |
|
- |
version = "0.53.0"
|
|
2638 |
+ |
version = "0.54.0"
|
| 2639 |
2639 |
|
dependencies = [
|
| 2640 |
2640 |
|
"makeover-geometry",
|
| 2641 |
2641 |
|
"makeover-layout",
|
| 6187 |
6187 |
|
"winnow 1.0.4",
|
| 6188 |
6188 |
|
]
|
| 6189 |
6189 |
|
|
|
6190 |
+ |
[[patch.unused]]
|
|
6191 |
+ |
name = "synckit-client"
|
|
6192 |
+ |
version = "0.8.0"
|
|
6193 |
+ |
|
| 6190 |
6194 |
|
[[patch.unused]]
|
| 6191 |
6195 |
|
name = "makeover-build"
|
| 6192 |
|
- |
version = "0.47.0"
|
|
6196 |
+ |
version = "0.48.0"
|
| 6193 |
6197 |
|
|
| 6194 |
6198 |
|
[[patch.unused]]
|
| 6195 |
6199 |
|
name = "kberg"
|
| 6210 |
6214 |
|
[[patch.unused]]
|
| 6211 |
6215 |
|
name = "quasi-type"
|
| 6212 |
6216 |
|
version = "0.1.0"
|
| 6213 |
|
- |
|
| 6214 |
|
- |
[[patch.unused]]
|
| 6215 |
|
- |
name = "synckit-client"
|
| 6216 |
|
- |
version = "0.8.0"
|
| 1 |
1 |
|
[package]
|
| 2 |
2 |
|
name = "quasi-axum"
|
| 3 |
|
- |
version = "0.45.0"
|
|
3 |
+ |
version = "0.46.0"
|
| 4 |
4 |
|
description = "The axum host adapter for quasi-router: an HTTP request in, a rendered description out"
|
| 5 |
5 |
|
edition.workspace = true
|
| 6 |
6 |
|
rust-version.workspace = true
|
| 13 |
13 |
|
workspace = true
|
| 14 |
14 |
|
|
| 15 |
15 |
|
[dependencies]
|
| 16 |
|
- |
quasi-router = { path = "../quasi-router", version = "0.45.0" }
|
| 17 |
|
- |
quasi-http = { path = "../quasi-http", version = "0.45.0" }
|
|
16 |
+ |
quasi-router = { path = "../quasi-router", version = "0.46.0" }
|
|
17 |
+ |
quasi-http = { path = "../quasi-http", version = "0.46.0" }
|
| 18 |
18 |
|
axum = "0.8.8"
|
| 19 |
19 |
|
http = "1.3.1"
|
| 20 |
20 |
|
tokio = { version = "1.50.0", features = ["rt"] }
|
| 21 |
21 |
|
|
| 22 |
22 |
|
[dev-dependencies]
|
| 23 |
|
- |
quasi-webview = { path = "../quasi-webview", version = "0.45.0" }
|
|
23 |
+ |
quasi-webview = { path = "../quasi-webview", version = "0.46.0" }
|
| 24 |
24 |
|
tokio = { version = "1.50.0", features = ["macros", "rt-multi-thread"] }
|
| 25 |
25 |
|
tower = { version = "0.5.3", features = ["util"] }
|
| 26 |
26 |
|
http-body-util = "0.1.3"
|
| 1 |
1 |
|
[package]
|
| 2 |
2 |
|
name = "quasi-basics"
|
| 3 |
|
- |
version = "0.45.0"
|
|
3 |
+ |
version = "0.46.0"
|
| 4 |
4 |
|
description = "The first-party widget set: named assemblies of primitives, shared across our apps"
|
| 5 |
5 |
|
edition.workspace = true
|
| 6 |
6 |
|
rust-version.workspace = true
|
| 13 |
13 |
|
workspace = true
|
| 14 |
14 |
|
|
| 15 |
15 |
|
[dependencies]
|
| 16 |
|
- |
quasi-router = { path = "../quasi-router", version = "0.45.0" }
|
| 17 |
|
- |
makeover-layout = "0.31.0"
|
|
16 |
+ |
quasi-router = { path = "../quasi-router", version = "0.46.0" }
|
|
17 |
+ |
makeover-layout = "0.32.0"
|
| 18 |
18 |
|
|
| 19 |
19 |
|
[dev-dependencies]
|
| 20 |
20 |
|
# A widget's guarantees are claims about what a renderer draws, so they are
|
| 21 |
21 |
|
# tested against a real one rather than by walking the tree the assembly just
|
| 22 |
22 |
|
# built. The webview is the renderer that recognises names today.
|
| 23 |
|
- |
quasi-webview = { path = "../quasi-webview", version = "0.45.0" }
|
| 24 |
|
- |
quasi-http = { path = "../quasi-http", version = "0.45.0" }
|
|
23 |
+ |
quasi-webview = { path = "../quasi-webview", version = "0.46.0" }
|
|
24 |
+ |
quasi-http = { path = "../quasi-http", version = "0.46.0" }
|
| 1 |
1 |
|
[package]
|
| 2 |
2 |
|
name = "quasi-bench"
|
| 3 |
|
- |
version = "0.45.0"
|
|
3 |
+ |
version = "0.46.0"
|
| 4 |
4 |
|
description = "What a described screen costs to render, in time and in allocations"
|
| 5 |
5 |
|
edition.workspace = true
|
| 6 |
6 |
|
rust-version.workspace = true
|
| 22 |
22 |
|
count = ["dep:dhat"]
|
| 23 |
23 |
|
|
| 24 |
24 |
|
[dependencies]
|
| 25 |
|
- |
quasi-router = { path = "../quasi-router", version = "0.45.0" }
|
| 26 |
|
- |
quasi-webview = { path = "../quasi-webview", version = "0.45.0" }
|
| 27 |
|
- |
quasi-tui = { path = "../quasi-tui", version = "0.45.0" }
|
|
25 |
+ |
quasi-router = { path = "../quasi-router", version = "0.46.0" }
|
|
26 |
+ |
quasi-webview = { path = "../quasi-webview", version = "0.46.0" }
|
|
27 |
+ |
quasi-tui = { path = "../quasi-tui", version = "0.46.0" }
|
| 28 |
28 |
|
# `Serves` is the trait carrying `screen` and `fragment`, which is what the
|
| 29 |
29 |
|
# webview is measured through. Taken directly rather than through quasi-webview
|
| 30 |
30 |
|
# because a bench calling a trait method should name the trait it calls.
|
| 31 |
|
- |
quasi-http = { path = "../quasi-http", version = "0.45.0" }
|
| 32 |
|
- |
makeover-layout = "0.31.0"
|
| 33 |
|
- |
makeover-tui = { version = "0.30.0", features = ["theme"] }
|
|
31 |
+ |
quasi-http = { path = "../quasi-http", version = "0.46.0" }
|
|
32 |
+ |
makeover-layout = "0.32.0"
|
|
33 |
+ |
makeover-tui = { version = "0.31.0", features = ["theme"] }
|
| 34 |
34 |
|
# Only to load a bundled theme file. `makeover_tui::Theme` is `#[non_exhaustive]`,
|
| 35 |
35 |
|
# so `Theme::from_theme` is the one way to get one, the same reason quasi-tui's
|
| 36 |
36 |
|
# tests take this.
|
| 1 |
1 |
|
[package]
|
| 2 |
2 |
|
name = "quasi-http"
|
| 3 |
|
- |
version = "0.45.0"
|
|
3 |
+ |
version = "0.46.0"
|
| 4 |
4 |
|
description = "The http-shaped seam quasi's webview host adapters share: decoding in, a rendered description out"
|
| 5 |
5 |
|
edition.workspace = true
|
| 6 |
6 |
|
rust-version.workspace = true
|
| 13 |
13 |
|
workspace = true
|
| 14 |
14 |
|
|
| 15 |
15 |
|
[dependencies]
|
| 16 |
|
- |
quasi-router = { path = "../quasi-router", version = "0.45.0" }
|
|
16 |
+ |
quasi-router = { path = "../quasi-router", version = "0.46.0" }
|
| 17 |
17 |
|
http = "1.3.1"
|
| 18 |
18 |
|
form_urlencoded = "1.2.2"
|
| 1 |
1 |
|
[package]
|
| 2 |
2 |
|
name = "quasi-immediate"
|
| 3 |
|
- |
version = "0.45.0"
|
|
3 |
+ |
version = "0.46.0"
|
| 4 |
4 |
|
edition = "2024"
|
| 5 |
5 |
|
description = "The immediate-mode renderer for quasi-router: a described screen in, an egui frame out. Immediate mode is the constraint that matters, not the library."
|
| 6 |
6 |
|
license = "MIT"
|
| 12 |
12 |
|
categories = ["gui"]
|
| 13 |
13 |
|
|
| 14 |
14 |
|
[dependencies]
|
| 15 |
|
- |
quasi-router = { path = "../quasi-router", version = "0.45.0" }
|
|
15 |
+ |
quasi-router = { path = "../quasi-router", version = "0.46.0" }
|
| 16 |
16 |
|
# The node drawing, which is the makeover layer's and not this crate's. Every
|
| 17 |
17 |
|
# widget here that is not a container comes from it: a screen walk that painted
|
| 18 |
18 |
|
# its own meter would be the divergence the suite exists to end, one copy per
|
| 19 |
19 |
|
# renderer instead of one copy per app.
|
| 20 |
|
- |
makeover-immediate = "0.30.0"
|
|
20 |
+ |
makeover-immediate = "0.31.0"
|
| 21 |
21 |
|
egui = { version = "0.35", default-features = false }
|
| 22 |
22 |
|
# Markdown to text for `Node::Rich`. The same crate the webview renderer takes,
|
| 23 |
23 |
|
# reading the same source: what differs is that it can emit markup and this
|
| 1 |
1 |
|
[package]
|
| 2 |
2 |
|
name = "quasi-notifs"
|
| 3 |
|
- |
version = "0.45.0"
|
|
3 |
+ |
version = "0.46.0"
|
| 4 |
4 |
|
description = "Declared notification kinds and the registry that holds them: what a notification says and what it is for, apart from how it reaches a person"
|
| 5 |
5 |
|
edition.workspace = true
|
| 6 |
6 |
|
rust-version.workspace = true
|
| 24 |
24 |
|
describe = ["dep:quasi-router"]
|
| 25 |
25 |
|
|
| 26 |
26 |
|
[dependencies]
|
| 27 |
|
- |
quasi-router = { path = "../quasi-router", version = "0.45.0", optional = true }
|
|
27 |
+ |
quasi-router = { path = "../quasi-router", version = "0.46.0", optional = true }
|
| 28 |
28 |
|
synckit-config = { git = "https://makenot.work/git/max/synckit.git", version = "0.2", optional = true }
|
| 1 |
1 |
|
[package]
|
| 2 |
2 |
|
name = "quasi-router"
|
| 3 |
|
- |
version = "0.45.0"
|
|
3 |
+ |
version = "0.46.0"
|
| 4 |
4 |
|
description = "Host-agnostic router: a request in, a renderer-agnostic description out"
|
| 5 |
5 |
|
edition.workspace = true
|
| 6 |
6 |
|
rust-version.workspace = true
|
| 13 |
13 |
|
workspace = true
|
| 14 |
14 |
|
|
| 15 |
15 |
|
[dependencies]
|
| 16 |
|
- |
makeover-layout = "0.31.0"
|
|
16 |
+ |
makeover-layout = "0.32.0"
|