12 lines
348 B
TOML
12 lines
348 B
TOML
[package]
|
|
name = "stopwatch"
|
|
version = "0.1.0"
|
|
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
iced = { path = "../.." }
|
|
iced_native = { path = "../../native" }
|
|
iced_futures = { path = "../../futures", features = ["async-std"] }
|
|
async-std = { version = "1.0", features = ["unstable"] }
|