Use cargo feature to specify both version and path
Thanks to reddit user /u/TimNN for suggesting this.
This commit is contained in:
parent
6ef03cda08
commit
a4c2c04c61
35 changed files with 168 additions and 478 deletions
|
@ -15,75 +15,27 @@ homepage = "http://imag-pim.org"
|
|||
|
||||
[dependencies]
|
||||
|
||||
[dependencies.libimagannotation]
|
||||
path = "../libimagannotation"
|
||||
|
||||
[dependencies.libimagbookmark]
|
||||
path = "../libimagbookmark"
|
||||
|
||||
[dependencies.libimagcounter]
|
||||
path = "../libimagcounter"
|
||||
|
||||
[dependencies.libimagdiary]
|
||||
path = "../libimagdiary"
|
||||
|
||||
[dependencies.libimagentrycategory]
|
||||
path = "../libimagentrycategory"
|
||||
|
||||
[dependencies.libimagentrydatetime]
|
||||
path = "../libimagentrydatetime"
|
||||
|
||||
[dependencies.libimagentryedit]
|
||||
path = "../libimagentryedit"
|
||||
|
||||
[dependencies.libimagentryfilter]
|
||||
path = "../libimagentryfilter"
|
||||
|
||||
[dependencies.libimagentrylink]
|
||||
path = "../libimagentrylink"
|
||||
|
||||
[dependencies.libimagentrylist]
|
||||
path = "../libimagentrylist"
|
||||
|
||||
[dependencies.libimagentrymarkdown]
|
||||
path = "../libimagentrymarkdown"
|
||||
|
||||
[dependencies.libimagentrytag]
|
||||
path = "../libimagentrytag"
|
||||
|
||||
[dependencies.libimagentrytimetrack]
|
||||
path = "../libimagentrytimetrack"
|
||||
|
||||
[dependencies.libimagentryview]
|
||||
path = "../libimagentryview"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimaginteraction]
|
||||
path = "../libimaginteraction"
|
||||
|
||||
[dependencies.libimagmail]
|
||||
path = "../libimagmail"
|
||||
|
||||
[dependencies.libimagnotes]
|
||||
path = "../libimagnotes"
|
||||
|
||||
[dependencies.libimagref]
|
||||
path = "../libimagref"
|
||||
|
||||
[dependencies.libimagrt]
|
||||
path = "../libimagrt"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagtimeui]
|
||||
path = "../libimagtimeui"
|
||||
|
||||
[dependencies.libimagtodo]
|
||||
path = "../libimagtodo"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
|
||||
libimagannotation = { version = "0.4.0", path = "../libimagannotation" }
|
||||
libimagbookmark = { version = "0.4.0", path = "../libimagbookmark" }
|
||||
libimagcounter = { version = "0.4.0", path = "../libimagcounter" }
|
||||
libimagdiary = { version = "0.4.0", path = "../libimagdiary" }
|
||||
libimagentrycategory = { version = "0.4.0", path = "../libimagentrycategory" }
|
||||
libimagentrydatetime = { version = "0.4.0", path = "../libimagentrydatetime" }
|
||||
libimagentryedit = { version = "0.4.0", path = "../libimagentryedit" }
|
||||
libimagentryfilter = { version = "0.4.0", path = "../libimagentryfilter" }
|
||||
libimagentrylink = { version = "0.4.0", path = "../libimagentrylink" }
|
||||
libimagentrylist = { version = "0.4.0", path = "../libimagentrylist" }
|
||||
libimagentrymarkdown = { version = "0.4.0", path = "../libimagentrymarkdown" }
|
||||
libimagentrytag = { version = "0.4.0", path = "../libimagentrytag" }
|
||||
libimagentrytimetrack = { version = "0.4.0", path = "../libimagentrytimetrack" }
|
||||
libimagentryview = { version = "0.4.0", path = "../libimagentryview" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimaginteraction = { version = "0.4.0", path = "../libimaginteraction" }
|
||||
libimagmail = { version = "0.4.0", path = "../libimagmail" }
|
||||
libimagnotes = { version = "0.4.0", path = "../libimagnotes" }
|
||||
libimagref = { version = "0.4.0", path = "../libimagref" }
|
||||
libimagrt = { version = "0.4.0", path = "../libimagrt" }
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagtimeui = { version = "0.4.0", path = "../libimagtimeui" }
|
||||
libimagtodo = { version = "0.4.0", path = "../libimagtodo" }
|
||||
libimagutil = { version = "0.4.0", path = "../libimagutil" }
|
||||
|
|
|
@ -27,9 +27,6 @@ crossbeam = "0.2"
|
|||
clap = "2.*"
|
||||
log = "0.3"
|
||||
|
||||
[dependencies.libimagrt]
|
||||
path = "../libimagrt"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
libimagrt = { version = "0.4.0", path = "../libimagrt" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
|
||||
|
|
|
@ -18,21 +18,9 @@ clap = ">=2.17"
|
|||
log = "0.3"
|
||||
version = "2.0.1"
|
||||
|
||||
[dependencies.libimagrt]
|
||||
path = "../libimagrt"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
|
||||
[dependencies.libimagbookmark]
|
||||
path = "../libimagbookmark"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimagentrylink]
|
||||
path = "../libimagentrylink"
|
||||
|
||||
[dependencies.libimagentrytag]
|
||||
path = "../libimagentrytag"
|
||||
|
||||
libimagrt = { version = "0.4.0", path = "../libimagrt" }
|
||||
libimagutil = { version = "0.4.0", path = "../libimagutil" }
|
||||
libimagbookmark = { version = "0.4.0", path = "../libimagbookmark" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimagentrylink = { version = "0.4.0", path = "../libimagentrylink" }
|
||||
libimagentrytag = { version = "0.4.0", path = "../libimagentrytag" }
|
||||
|
|
|
@ -18,15 +18,7 @@ clap = ">=2.17"
|
|||
log = "0.3"
|
||||
version = "2.0.1"
|
||||
|
||||
[dependencies.libimagrt]
|
||||
path = "../libimagrt"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
|
||||
[dependencies.libimagcounter]
|
||||
path = "../libimagcounter"
|
||||
|
||||
libimagrt = { version = "0.4.0", path = "../libimagrt" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimagutil = { version = "0.4.0", path = "../libimagutil" }
|
||||
libimagcounter = { version = "0.4.0", path = "../libimagcounter" }
|
||||
|
|
|
@ -19,30 +19,12 @@ version = "2.0"
|
|||
clap = "2.*"
|
||||
log = "0.3"
|
||||
|
||||
[dependencies.libimagrt]
|
||||
path = "../libimagrt"
|
||||
|
||||
[dependencies.libimagdiary]
|
||||
path = "../libimagdiary"
|
||||
|
||||
[dependencies.libimagentryedit]
|
||||
path = "../libimagentryedit"
|
||||
|
||||
[dependencies.libimagentrylist]
|
||||
path = "../libimagentrylist"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimaginteraction]
|
||||
path = "../libimaginteraction"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagtimeui]
|
||||
path = "../libimagtimeui"
|
||||
|
||||
libimagrt = { version = "0.4.0", path = "../libimagrt" }
|
||||
libimagdiary = { version = "0.4.0", path = "../libimagdiary" }
|
||||
libimagentryedit = { version = "0.4.0", path = "../libimagentryedit" }
|
||||
libimagentrylist = { version = "0.4.0", path = "../libimagentrylist" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimaginteraction = { version = "0.4.0", path = "../libimaginteraction" }
|
||||
libimagutil = { version = "0.4.0", path = "../libimagutil" }
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagtimeui = { version = "0.4.0", path = "../libimagtimeui" }
|
||||
|
|
|
@ -22,23 +22,15 @@ toml = "^0.4"
|
|||
toml-query = "0.1"
|
||||
url = "1.2"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagrt]
|
||||
path = "../libimagrt"
|
||||
|
||||
[dependencies.libimagentrylink]
|
||||
path = "../libimagentrylink"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagrt = { version = "0.4.0", path = "../libimagrt" }
|
||||
libimagentrylink = { version = "0.4.0", path = "../libimagentrylink" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimagutil = { version = "0.4.0", path = "../libimagutil" }
|
||||
|
||||
[dev-dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
version = "0.4.0"
|
||||
path = "../libimagutil"
|
||||
default-features = false
|
||||
features = ["testing"]
|
||||
|
||||
|
|
|
@ -17,18 +17,8 @@ version = "2.0.1"
|
|||
toml = "0.4.*"
|
||||
url = "1.2"
|
||||
|
||||
[dependencies.libimagrt]
|
||||
path = "../libimagrt"
|
||||
|
||||
[dependencies.libimagmail]
|
||||
path = "../libimagmail"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
|
||||
[dependencies.libimagref]
|
||||
path = "../libimagref"
|
||||
|
||||
libimagrt = { version = "0.4.0", path = "../libimagrt" }
|
||||
libimagmail = { version = "0.4.0", path = "../libimagmail" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimagutil = { version = "0.4.0", path = "../libimagutil" }
|
||||
libimagref = { version = "0.4.0", path = "../libimagref" }
|
||||
|
|
|
@ -20,21 +20,9 @@ log = "0.3"
|
|||
version = "2.0.1"
|
||||
itertools = "0.5"
|
||||
|
||||
[dependencies.libimagrt]
|
||||
path = "../libimagrt"
|
||||
|
||||
[dependencies.libimagnotes]
|
||||
path = "../libimagnotes"
|
||||
|
||||
[dependencies.libimagentryedit]
|
||||
path = "../libimagentryedit"
|
||||
|
||||
[dependencies.libimagentrytag]
|
||||
path = "../libimagentrytag"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
|
||||
libimagrt = { version = "0.4.0", path = "../libimagrt" }
|
||||
libimagnotes = { version = "0.4.0", path = "../libimagnotes" }
|
||||
libimagentryedit = { version = "0.4.0", path = "../libimagentryedit" }
|
||||
libimagentrytag = { version = "0.4.0", path = "../libimagentrytag" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimagutil = { version = "0.4.0", path = "../libimagutil" }
|
||||
|
|
|
@ -19,24 +19,10 @@ clap = ">=2.17"
|
|||
log = "0.3"
|
||||
version = "2.0.1"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagrt]
|
||||
path = "../libimagrt"
|
||||
|
||||
[dependencies.libimagref]
|
||||
path = "../libimagref"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimaginteraction]
|
||||
path = "../libimaginteraction"
|
||||
|
||||
[dependencies.libimagentrylist]
|
||||
path = "../libimagentrylist"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagrt = { version = "0.4.0", path = "../libimagrt" }
|
||||
libimagref = { version = "0.4.0", path = "../libimagref" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimaginteraction = { version = "0.4.0", path = "../libimaginteraction" }
|
||||
libimagentrylist = { version = "0.4.0", path = "../libimagentrylist" }
|
||||
libimagutil = { version = "0.4.0", path = "../libimagutil" }
|
||||
|
|
|
@ -20,19 +20,10 @@ version = "2.0.1"
|
|||
semver = "0.5"
|
||||
toml = "^0.4"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
default-features = false
|
||||
features = ["verify"]
|
||||
|
||||
[dependencies.libimagrt]
|
||||
path = "../libimagrt"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore", default-features = false, features = ["verify"] }
|
||||
libimagrt = { version = "0.4.0", path = "../libimagrt" }
|
||||
libimagutil = { version = "0.4.0", path = "../libimagutil" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
|
||||
[features]
|
||||
early-panic = [ "libimagstore/early-panic" ]
|
||||
|
|
|
@ -20,27 +20,19 @@ version = "2.0.1"
|
|||
semver = "0.2"
|
||||
toml = "^0.4"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagrt]
|
||||
path = "../libimagrt"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimagentrytag]
|
||||
path = "../libimagentrytag"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
|
||||
[dev-dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
default-features = false
|
||||
features = ["testing"]
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagrt = { version = "0.4.0", path = "../libimagrt" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimagentrytag = { version = "0.4.0", path = "../libimagentrytag" }
|
||||
libimagutil = { version = "0.4.0", path = "../libimagutil" }
|
||||
|
||||
[dev-dependencies]
|
||||
toml-query = "0.3.0"
|
||||
env_logger = "0.3"
|
||||
|
||||
[dev-dependencies.libimagutil]
|
||||
version = "0.4.0"
|
||||
path = "../libimagutil"
|
||||
default-features = false
|
||||
features = ["testing"]
|
||||
|
||||
|
|
|
@ -23,18 +23,8 @@ chrono = "^0.4"
|
|||
filters = "0.1.1"
|
||||
itertools = "0.6"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagrt]
|
||||
path = "../libimagrt"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimagentrytimetrack]
|
||||
path = "../libimagentrytimetrack"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagrt = { version = "0.4.0", path = "../libimagrt" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimagentrytimetrack = { version = "0.4.0", path = "../libimagentrytimetrack" }
|
||||
libimagutil = { version = "0.4.0", path = "../libimagutil" }
|
||||
|
|
|
@ -25,14 +25,7 @@ toml-query = "0.3.*"
|
|||
is-match = "0.1.*"
|
||||
version = "2.0.1"
|
||||
|
||||
[dependencies.libimagrt]
|
||||
path = "../libimagrt"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagtodo]
|
||||
path = "../libimagtodo"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
libimagrt = { version = "0.4.0", path = "../libimagrt" }
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagtodo = { version = "0.4.0", path = "../libimagtodo" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
|
|
|
@ -20,15 +20,7 @@ semver = "0.5"
|
|||
toml = "^0.4"
|
||||
version = "2.0.1"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagrt]
|
||||
path = "../libimagrt"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimagentryview]
|
||||
path = "../libimagentryview"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagrt = { version = "0.4.0", path = "../libimagrt" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimagentryview = { version = "0.4.0", path = "../libimagentryview" }
|
||||
|
|
|
@ -14,18 +14,8 @@ uuid = { version = "0.3.1", features = ["v4"] }
|
|||
lazy_static = "0.1.15"
|
||||
toml = "^0.4"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagnotes]
|
||||
path = "../libimagnotes"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimagentrylink]
|
||||
path = "../libimagentrylink"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagnotes = { version = "0.4.0", path = "../libimagnotes" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimagentrylink = { version = "0.4.0", path = "../libimagentrylink" }
|
||||
libimagutil = { version = "0.4.0", path = "../libimagutil" }
|
||||
|
|
|
@ -18,12 +18,7 @@ semver = "0.5"
|
|||
url = "1.2"
|
||||
regex = "0.1"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimagentrylink]
|
||||
path = "../libimagentrylink"
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimagentrylink = { version = "0.4.0", path = "../libimagentrylink" }
|
||||
|
||||
|
|
|
@ -19,9 +19,5 @@ toml = "0.4.*"
|
|||
toml-query = "0.3.*"
|
||||
semver = "0.5"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
|
|
|
@ -22,21 +22,9 @@ toml-query = "0.3.*"
|
|||
regex = "0.1"
|
||||
itertools = "0.5"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
|
||||
[dependencies.libimagrt]
|
||||
path = "../libimagrt"
|
||||
|
||||
[dependencies.libimagentryedit]
|
||||
path = "../libimagentryedit"
|
||||
|
||||
[dependencies.libimagentryview]
|
||||
path = "../libimagentryview"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimagutil = { version = "0.4.0", path = "../libimagutil" }
|
||||
libimagrt = { version = "0.4.0", path = "../libimagrt" }
|
||||
libimagentryedit = { version = "0.4.0", path = "../libimagentryedit" }
|
||||
libimagentryview = { version = "0.4.0", path = "../libimagentryview" }
|
||||
|
|
|
@ -19,11 +19,8 @@ toml = "0.4"
|
|||
toml-query = "0.3"
|
||||
is-match = "0.1"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
|
||||
[dev-dependencies]
|
||||
env_logger = "0.4"
|
||||
|
|
|
@ -19,14 +19,9 @@ toml-query = "0.3"
|
|||
lazy_static = "0.2"
|
||||
toml = "0.4"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagutil = { version = "0.4.0", path = "../libimagutil" }
|
||||
|
||||
[dev-dependencies]
|
||||
is-match = "0.1"
|
||||
|
|
|
@ -15,15 +15,7 @@ homepage = "http://imag-pim.org"
|
|||
|
||||
[dependencies]
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimagrt]
|
||||
path = "../libimagrt"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimagrt = { version = "0.4.0", path = "../libimagrt" }
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagutil = { version = "0.4.0", path = "../libimagutil" }
|
||||
|
|
|
@ -22,9 +22,5 @@ regex = "0.2"
|
|||
semver = "0.5.*"
|
||||
toml = "^0.4"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagentrytag]
|
||||
path = "../libimagentrytag"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagentrytag = { version = "0.4.0", path = "../libimagentrytag" }
|
||||
|
|
|
@ -23,12 +23,6 @@ rust-crypto = "0.2"
|
|||
env_logger = "0.3"
|
||||
is-match = "0.1"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimagutil = { version = "0.4.0", path = "../libimagutil" }
|
||||
|
|
|
@ -19,12 +19,6 @@ log = "0.3"
|
|||
toml = "^0.4"
|
||||
prettytable-rs = "0.6.*"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimagutil = { version = "0.4.0", path = "../libimagutil" }
|
||||
|
|
|
@ -19,9 +19,6 @@ hoedown = "5.0.0"
|
|||
crossbeam = "0.2"
|
||||
url = "1.2"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
|
||||
|
|
|
@ -22,12 +22,6 @@ itertools = "0.5"
|
|||
is-match = "0.1"
|
||||
filters = "0.1"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimagutil = { version = "0.4.0", path = "../libimagutil" }
|
||||
|
|
|
@ -21,15 +21,7 @@ toml-query = "0.3"
|
|||
lazy_static = "0.2"
|
||||
is-match = "0.1"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagentrydatetime]
|
||||
path = "../libimagentrydatetime"
|
||||
|
||||
[dependencies.libimagentrytag]
|
||||
path = "../libimagentrytag"
|
||||
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagentrydatetime = { version = "0.4.0", path = "../libimagentrydatetime" }
|
||||
libimagentrytag = { version = "0.4.0", path = "../libimagentrytag" }
|
||||
|
|
|
@ -18,15 +18,7 @@ log = "0.3"
|
|||
toml = "^0.4"
|
||||
glob = "0.2"
|
||||
|
||||
[dependencies.libimagrt]
|
||||
path = "../libimagrt"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimagentryedit]
|
||||
path = "../libimagentryedit"
|
||||
|
||||
libimagrt = { version = "0.4.0", path = "../libimagrt" }
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimagentryedit = { version = "0.4.0", path = "../libimagentryedit" }
|
||||
|
|
|
@ -24,15 +24,7 @@ toml = "^0.4"
|
|||
spinner = "0.4"
|
||||
rustyline = "1.0"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagentryfilter]
|
||||
path = "../libimagentryfilter"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagentryfilter = { version = "0.4.0", path = "../libimagentryfilter" }
|
||||
libimagutil = { version = "0.4.0", path = "../libimagutil" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
|
|
|
@ -20,12 +20,6 @@ semver = "0.5"
|
|||
toml = "0.4.*"
|
||||
filters = "0.1.*"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimagref]
|
||||
path = "../libimagref"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimagref = { version = "0.4.0", path = "../libimagref" }
|
||||
|
|
|
@ -18,18 +18,8 @@ semver = "0.5"
|
|||
log = "0.3"
|
||||
toml = "^0.4"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimagrt]
|
||||
path = "../libimagrt"
|
||||
|
||||
[dependencies.libimagentryedit]
|
||||
path = "../libimagentryedit"
|
||||
|
||||
[dependencies.libimagentrytag]
|
||||
path = "../libimagentrytag"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimagrt = { version = "0.4.0", path = "../libimagrt" }
|
||||
libimagentryedit = { version = "0.4.0", path = "../libimagentryedit" }
|
||||
libimagentrytag = { version = "0.4.0", path = "../libimagentrytag" }
|
||||
|
|
|
@ -22,15 +22,7 @@ toml = "^0.4"
|
|||
version = "2.0.1"
|
||||
walkdir = "1.0.*"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
|
||||
[dependencies.libimagentrylist]
|
||||
path = "../libimagentrylist"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimagutil = { version = "0.4.0", path = "../libimagutil" }
|
||||
libimagentrylist = { version = "0.4.0", path = "../libimagentrylist" }
|
||||
|
|
|
@ -24,12 +24,6 @@ tempfile = "2.1"
|
|||
ansi_term = "0.9"
|
||||
is-match = "0.1"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagutil = { version = "0.4.0", path = "../libimagutil" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
|
|
|
@ -30,11 +30,8 @@ serde = "1.0"
|
|||
serde_json = "1.0"
|
||||
serde_derive = "1.0"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimagutil = { version = "0.4.0", path = "../libimagutil" }
|
||||
|
||||
[dev-dependencies]
|
||||
tempdir = "0.3.4"
|
||||
|
|
|
@ -23,12 +23,6 @@ is-match = "0.1.*"
|
|||
log = "0.3"
|
||||
serde_json = "0.8"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagerror]
|
||||
path = "../libimagerror"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../libimagerror" }
|
||||
libimagutil = { version = "0.4.0", path = "../libimagutil" }
|
||||
|
|
Loading…
Reference in a new issue