mirror of
https://github.com/danbulant/cushy
synced 2026-05-24 20:32:28 +00:00
44 lines
892 B
TOML
44 lines
892 B
TOML
[package]
|
|
name = "gooey"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = ["tracing-output"]
|
|
tracing-output = ["dep:tracing-subscriber"]
|
|
|
|
[dependencies]
|
|
kludgine = { git = "https://github.com/khonsulabs/kludgine", features = [
|
|
"app",
|
|
] }
|
|
alot = "0.3"
|
|
interner = "0.2.1"
|
|
kempt = "0.2.1"
|
|
intentional = "0.1.0"
|
|
tracing = "0.1.40"
|
|
|
|
tracing-subscriber = { version = "0.3", optional = true, features = [
|
|
"env-filter",
|
|
] }
|
|
palette = "0.7.3"
|
|
ahash = "0.8.6"
|
|
|
|
|
|
# [patch."https://github.com/khonsulabs/kludgine"]
|
|
# kludgine = { path = "../kludgine" }
|
|
# [patch."https://github.com/khonsulabs/appit"]
|
|
# appit = { path = "../appit" }
|
|
# [patch."https://github.com/khonsulabs/figures"]
|
|
# figures = { path = "../figures" }
|
|
|
|
# [patch.crates-io]
|
|
# kempt = { path = "../objectmap" }
|
|
|
|
[profile.dev.package."*"]
|
|
opt-level = 2
|
|
|
|
[dev-dependencies]
|
|
pollster = "0.3.0"
|
|
|
|
[profile.release]
|
|
debug = true
|