mirror of https://github.com/Leinnan/doppler.git
21 lines
359 B
TOML
21 lines
359 B
TOML
[package]
|
|
name = "doppler_example"
|
|
version = "0.1.0"
|
|
authors = ["Piotr <siuszko@zoho.com>"]
|
|
edition = "2018"
|
|
|
|
[profile.release]
|
|
opt-level = 'z'
|
|
panic = 'abort'
|
|
lto = true
|
|
|
|
[dependencies]
|
|
doppler = {path="doppler"}
|
|
glutin = "0.24.1"
|
|
cgmath = "0.17.0"
|
|
imgui="0.4.0"
|
|
imgui-inspect = "0.5.0"
|
|
imgui-inspect-derive = "0.5.0"
|
|
|
|
[profile.dev.package."*"]
|
|
opt-level = 2 |