BwInf37-Runde2-Aufgabe1/Cargo.toml

24 lines
477 B
TOML
Raw Normal View History

2019-01-17 17:37:39 +00:00
[package]
2019-01-31 15:10:03 +00:00
name = "aufgabe1"
2019-01-17 17:37:39 +00:00
version = "0.1.0"
2019-01-31 15:10:03 +00:00
authors = ["Arne Keller <arne.keller01@yahoo.de>"]
2019-01-17 17:37:39 +00:00
edition = "2018"
2019-01-30 14:38:04 +00:00
[profile.release]
codegen-units = 1
2019-01-30 21:10:37 +00:00
opt-level = 3
panic = "abort"
2019-04-02 15:51:26 +00:00
debug = true
2019-01-30 14:38:04 +00:00
2019-01-17 17:37:39 +00:00
[dependencies]
2019-04-02 15:51:26 +00:00
geo = { git = "https://github.com/FliegendeWurst/geo" }
2019-01-17 17:37:39 +00:00
svg = "0.5.11"
2019-01-30 14:38:04 +00:00
chrono = "0.4.6"
2019-03-29 18:39:22 +00:00
structopt = { version = "0.2", default-features = false }
2019-04-01 17:05:18 +00:00
svgdom = "0.16.1"
rstar = "0.2.0"
lazy_static = "1.3.0"
2019-04-02 15:51:26 +00:00
hashbrown = "0.1.8"
2019-04-06 17:50:27 +00:00
pathfinding = "1.1.12"
2019-04-07 21:08:36 +00:00
parking_lot = "0.7.1"