| 1 |
[package] |
| 2 |
name = "quasi-basics" |
| 3 |
version = "0.109.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.109" } |
| 17 |
quasi-declare = { path = "../quasi-declare", version = "0.1" } |
| 18 |
makeover-layout = "0.44" |
| 19 |
|
| 20 |
[dev-dependencies] |
| 21 |
# A widget's guarantees are claims about what a renderer draws, so they are |
| 22 |
# tested against a real one rather than by walking the tree the assembly just |
| 23 |
# built. The webview is the renderer that recognises names today. |
| 24 |
quasi-webview = { path = "../quasi-webview", version = "0.109" } |
| 25 |
quasi-http = { path = "../quasi-http", version = "0.109" } |
| 26 |
|