summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ffi/Cargo.toml10
-rw-r--r--net/Cargo.toml4
-rw-r--r--openpgp-ffi/Cargo.toml4
-rw-r--r--store/Cargo.toml6
-rw-r--r--tool/Cargo.toml8
5 files changed, 16 insertions, 16 deletions
diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml
index cff320f2..3d0e3c68 100644
--- a/ffi/Cargo.toml
+++ b/ffi/Cargo.toml
@@ -21,11 +21,11 @@ gitlab = { repository = "sequoia-pgp/sequoia" }
maintenance = { status = "actively-developed" }
[dependencies]
-sequoia-ffi-macros = { path = "../ffi-macros" }
-sequoia-openpgp = { path = "../openpgp" }
-sequoia-core = { path = "../core" }
-sequoia-store = { path = "../store" }
-sequoia-net = { path = "../net" }
+sequoia-ffi-macros = { path = "../ffi-macros", version = "0.5" }
+sequoia-openpgp = { path = "../openpgp", version = "0.5" }
+sequoia-core = { path = "../core", version = "0.5" }
+sequoia-store = { path = "../store", version = "0.5" }
+sequoia-net = { path = "../net", version = "0.5" }
failure = "0.1.2"
lazy_static = "1.0.0"
libc = "0.2.33"
diff --git a/net/Cargo.toml b/net/Cargo.toml
index ab6c0cb0..08f81eb2 100644
--- a/net/Cargo.toml
+++ b/net/Cargo.toml
@@ -20,8 +20,8 @@ gitlab = { repository = "sequoia-pgp/sequoia" }
maintenance = { status = "actively-developed" }
[dependencies]
-sequoia-openpgp = { path = "../openpgp" }
-sequoia-core = { path = "../core" }
+sequoia-openpgp = { path = "../openpgp", version = "0.5" }
+sequoia-core = { path = "../core", version = "0.5" }
capnp-rpc = "0.9"
failure = "0.1.2"
diff --git a/openpgp-ffi/Cargo.toml b/openpgp-ffi/Cargo.toml
index 6a065a2b..cf7a7d61 100644
--- a/openpgp-ffi/Cargo.toml
+++ b/openpgp-ffi/Cargo.toml
@@ -21,8 +21,8 @@ gitlab = { repository = "sequoia-pgp/sequoia" }
maintenance = { status = "actively-developed" }
[dependencies]
-sequoia-ffi-macros = { path = "../ffi-macros" }
-sequoia-openpgp = { path = "../openpgp" }
+sequoia-ffi-macros = { path = "../ffi-macros", version = "0.5" }
+sequoia-openpgp = { path = "../openpgp", version = "0.5" }
failure = "0.1.2"
lazy_static = "1.0.0"
libc = "0.2.33"
diff --git a/store/Cargo.toml b/store/Cargo.toml
index 0de9076f..403ba058 100644
--- a/store/Cargo.toml
+++ b/store/Cargo.toml
@@ -25,9 +25,9 @@ default = ["background-services"]
background-services = []
[dependencies]
-sequoia-openpgp = { path = "../openpgp" }
-sequoia-core = { path = "../core" }
-sequoia-net = { path = "../net" }
+sequoia-openpgp = { path = "../openpgp", version = "0.5" }
+sequoia-core = { path = "../core", version = "0.5" }
+sequoia-net = { path = "../net", version = "0.5" }
capnp = "0.9.2"
capnp-rpc = "0.9"
failure = "0.1.2"
diff --git a/tool/Cargo.toml b/tool/Cargo.toml
index db2c3d18..c6644ff2 100644
--- a/tool/Cargo.toml
+++ b/tool/Cargo.toml
@@ -21,10 +21,10 @@ gitlab = { repository = "sequoia-pgp/sequoia" }
maintenance = { status = "actively-developed" }
[dependencies]
-sequoia-openpgp = { path = "../openpgp" }
-sequoia-core = { path = "../core" }
-sequoia-net = { path = "../net" }
-sequoia-store = { path = "../store" }
+sequoia-openpgp = { path = "../openpgp", version = "0.5" }
+sequoia-core = { path = "../core", version = "0.5" }
+sequoia-net = { path = "../net", version = "0.5" }
+sequoia-store = { path = "../store", version = "0.5" }
clap = "2.32.0"
failure = "0.1.2"
prettytable-rs = "0.8.0"