-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
44 lines (37 loc) · 1.12 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
[package]
name = "narui"
version = "0.1.1"
authors = ["Jaro Habiger <[email protected]>", "Robin Ole Heinemann <[email protected]>"]
description = "A react-inspired UI library for building multimedia desktop apps with rust and vulkan."
repository = "https://github.com/apertus-open-source-cinema/narui/"
license = "MIT OR Apache-2.0"
keywords = ["graphics", "vulkan", "gui", "react", "flutter"]
categories = ["gui"]
readme = "README.md"
edition = "2018"
[lib]
name = "narui"
[dependencies]
narui_core = { path = "narui_core", version ="^0.1.2"}
narui_macros = { path = "narui_macros", version ="^0.1.0"}
rutter_layout = { path = "rutter_layout", version ="^0.1.0"}
narui_widgets = { path = "narui_widgets", version ="^0.1.2"}
[dev-dependencies]
log = "0.4.14"
env_logger = "0.9.0"
[dev-dependencies.cargo-husky]
version = "1.5.0"
features = ["precommit-hook", "run-cargo-fmt", "run-cargo-check"]
[workspace]
members = [
"narui_core",
"narui_macros",
"narui_widgets",
"rutter_layout",
"freelist",
]
[features]
debug_bounds = ["narui_core/debug_bounds"]
[profile.release]
lto = "fat"
debug = true