forked from rust-fractal/rust-fractal-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (24 loc) · 851 Bytes
/
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
[package]
name = "rust_fractal_gui"
version = "0.3.0"
authors = ["jackyarndley <34801340+jackyarndley@users.noreply.github.com>"]
edition = "2018"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies.druid]
git = "https://github.com/linebender/druid"
# rev = "4fe3939" # update this when upgrading to newer druid
# rev = "399c454"
[dependencies.druid-widget-nursery]
git = "https://github.com/linebender/druid-widget-nursery.git"
rev = "c77e67a"
[dependencies]
rust_fractal = {path = "../rust-fractal-core"}
config = "0.14.0"
parking_lot = { version = "0.12.1", features = ["nightly"] }
float_eq = "1.0.1"
[build-dependencies]
vergen = { version = "^8.3.1", features = ["build", "cargo", "git", "gitcl", "rustc", "si"] }
anyhow = "1.0.81"
[profile.release]
lto = "fat"