34 lines
836 B
TOML
34 lines
836 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.0", features = ["im", "svg"] }
|
|
im = { version = "*" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_bare = "0.3.0"
|
|
serde_json = "1.0"
|
|
clap = "3.0.0-beta.2"
|
|
|
|
[target.'cfg(target_os="linux")'.dependencies.gtk]
|
|
version = "0.9.2"
|
|
features = ["v3_22"]
|
|
|
|
[target.'cfg(target_os="linux")'.dependencies.gio]
|
|
version = "0.9.1"
|
|
features = ["v2_56"]
|
|
|
|
[target.'cfg(target_os="linux")'.dependencies.gdk]
|
|
version = "0.13.2"
|
|
features = ["v3_22"]
|
|
|
|
|
|
[patch.crates-io]
|
|
druid = { git = "https://github.com/doppioandante/druid", branch = "v0.7.0_stiletto", features = ["im", "svg"] }
|
|
#druid = { path = "../druid/druid/", features = ["im", "svg"] }
|
|
|