Skip to main content

max / quasi

794 B · 25 lines History Blame Raw
1 [package]
2 name = "quasi-basics"
3 version = "0.8.0"
4 description = "The first-party widget set: named assemblies of primitives, shared across our apps"
5 edition.workspace = true
6 rust-version.workspace = true
7 authors.workspace = true
8 repository.workspace = true
9 license.workspace = true
10 publish = false
11
12 [lints]
13 workspace = true
14
15 [dependencies]
16 quasi-router = { path = "../quasi-router", version = "0.8.0" }
17 makeover-layout = "0.26.1"
18
19 [dev-dependencies]
20 # A widget's guarantees are claims about what a renderer draws, so they are
21 # tested against a real one rather than by walking the tree the assembly just
22 # built. The webview is the renderer that recognises names today.
23 quasi-webview = { path = "../quasi-webview", version = "0.8.0" }
24 quasi-http = { path = "../quasi-http", version = "0.8.0" }
25