diff options
author | Robin Krahl <robin.krahl@ireas.org> | 2019-01-08 04:53:45 +0100 |
---|---|---|
committer | Robin Krahl <robin.krahl@ireas.org> | 2019-01-08 04:53:45 +0100 |
commit | 31e1410bf3299301879171d5677f69925828844c (patch) | |
tree | 27f54f829432c2a94ba49f61ccf536480a377a1d /Cargo.toml | |
download | dialog-rs-31e1410bf3299301879171d5677f69925828844c.tar.gz dialog-rs-31e1410bf3299301879171d5677f69925828844c.tar.bz2 |
Create project skeleton
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..afd8ad5 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "dialog" +version = "0.1.0" +authors = ["Robin Krahl <robin.krahl@ireas.org>"] +edition = "2018" +repository = "https://git.ireas.org/dialog-rs/" +documentation = "https://docs.rs/dialog" +description = "Display dialog boxes using various backends" +keywords = ["ui", "dialog"] +categories = ["command-line-interface", "gui"] +readme = "README.md" +license = "MIT" + +[dependencies] |