From 02d6fbc5667612c7e3398e05c3f2e28a0d6ecf37 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sat, 6 Aug 2016 14:05:52 +0200 Subject: [PATCH 1/3] Add workspace --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) create mode 100644 Cargo.toml diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 00000000..bdaba833 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1 @@ +[workspace] From 1023946994c65b0717975c0d545045459c1eece9 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sat, 6 Aug 2016 16:09:03 +0200 Subject: [PATCH 2/3] Add members --- Cargo.toml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index bdaba833..1eb91ab9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1 +1,38 @@ [workspace] +members = [ + "bin", + "imag-bookmark", + "imag-counter", + "imag-diary", + "imag-link", + "imag-notes", + "imagrc.toml", + "imag-ref", + "imag-store", + "imag-tag", + "imag-todo", + "imag-view", + "libimagbookmark", + "libimagcliutil", + "libimagcounter", + "libimagdiary", + "libimagentryfilter", + "libimagentrylink", + "libimagentrylist", + "libimagentrymarkdown", + "libimagentrymarkup", + "libimagentryselect", + "libimagentrytag", + "libimagentryview", + "libimagerror", + "libimaginteraction", + "libimagnotes", + "libimagnotification", + "libimagref", + "libimagrt", + "libimagstore", + "libimagstorestdhook", + "libimagtimeui", + "libimagtodo", + "libimagutil", +] From 0090b3811cb2ddaa214e496edf9a2f188fb08f12 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 24 Aug 2016 10:55:26 +0200 Subject: [PATCH 3/3] Add more required information in top-level Cargo.toml --- Cargo.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 1eb91ab9..1f9ee61e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,3 +1,19 @@ +[package] +name = "imag" +version = "0.2.0" +authors = ["Matthias Beyer "] + +description = "Personal information management (PIM) suite" +keywords = ["pim", "personal", "information", "management", "suite"] +readme = "./README.md" +license = "LGPL-2.1" + +website = "http://imag-pim.org" +documentation = "https://matthiasbeyer.github.io/imag/imag_documentation/index.html" +repository = "https://github.com/matthiasbeyer/imag" + +[dependencies] + [workspace] members = [ "bin", @@ -36,3 +52,4 @@ members = [ "libimagtodo", "libimagutil", ] +