Hands-On-Functional-Program.../Chapter05/Cargo.toml

26 lines
399 B
TOML
Raw Normal View History

2018-04-18 19:49:47 +00:00
[package]
name = "elevator"
version = "1.0.0"
2018-04-18 20:29:42 +00:00
build = "build.rs"
2018-04-18 19:49:47 +00:00
[dependencies]
floating-duration = "0.1.2"
termion = "1.0"
timebomb = "0.1"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
2018-04-18 20:29:42 +00:00
libc = "0.2"
2018-04-18 19:49:47 +00:00
[[bin]]
name = "simulate_trip"
path = "src/simulate_trip.rs"
[[bin]]
name = "analyze_trip"
path = "src/analyze_trip.rs"
[[bin]]
name = "operate_elevator"
path = "src/operate_elevator.rs"