This repository has been archived by the owner on Jun 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
53 lines (47 loc) · 1.62 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
authors = ["Olivier FAURE <[email protected]>"]
categories = ["gui"]
description = "Data-oriented Rust UI design toolkit."
edition = "2021"
keywords = ["gui", "ui", "toolkit"]
license = "Apache-2.0"
name = "masonry"
readme = "README.md"
repository = "https://github.com/PoignardAzur/masonry-rs"
rust-version = "1.65"
version = "0.1.3"
[profile.dev.package."*"]
opt-level = 2
# NOTE: Make sure to keep wgpu version in sync with the version badge in README.md
[dependencies]
fnv = "1.0.7"
instant = {version = "0.1.6", features = ["wasm-bindgen"]}
smallvec = "1.6.1"
tracing = "0.1.29"
tracing-subscriber = {version = "0.2.15", features = ["fmt", "ansi"], default-features = false}
image = "0.24.0"
once_cell = "1.9.0"
serde = {version = "1.0.133", features = ["derive"]}
serde_json = "1.0.74"
vello = { git = "https://github.com/linebender/vello/", rev = "b520a35addfa6bbb37d93491d2b8236528faf3b5" }
kurbo = "0.11.0"
futures-intrusive = "0.5.0"
pollster = "0.3.0"
parley = { git = "https://github.com/linebender/parley", rev = "4f05e183be9b388c6748d3c531c9ac332672fb86" }
wgpu = { version = "0.19.3" }
swash = "0.1.15"
winit = "0.29.15"
[target.'cfg(target_arch="wasm32")'.dependencies]
console_error_panic_hook = {version = "0.1.6"}
tracing-wasm = {version = "0.2.0"}
[dev-dependencies]
float-cmp = {version = "0.8.0", features = ["std"], default-features = false}
insta = {version = "1.8.0"}
assert_matches = "1.5.0"
pulldown-cmark = {version = "0.8", default-features = false}
tempfile = "3.10.1"
[target.'cfg(not(target_arch="wasm32"))'.dev-dependencies]
open = "1.6"
[[example]]
name = "simple_image"
#required-features = ["image", "png"]