stiletto/Cargo.toml

33 lines
777 B
TOML

[package]
name = "stiletto"
version = "0.1.0"
authors = ["Enrico Lumetti <enrico.lumetti@gmail.com>"]
edition = "2018"
default-run = "stiletto"
[dependencies]
log = "0.4"
druid = { version = "0.7", features = ["im", "svg"] }
im = { version = "*" }
serde = { version = "1.0", features = ["derive"] }
serde_bare = "0.3.0"
serde_json = "1.0"
clap = "3.1"
[target.'cfg(target_os="linux")'.dependencies.gtk]
version = "0.14"
features = ["v3_22"]
[target.'cfg(target_os="linux")'.dependencies.gio]
version = "0.14"
features = ["v2_56"]
[target.'cfg(target_os="linux")'.dependencies.gdk]
version = "0.14"
features = ["v3_22"]
[patch.crates-io]
#druid = { git = "https://github.com/jneem/druid", branch = "pointer", features = ["im", "svg"] }
druid = { path= "../druid/druid/" }