summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--Cargo.toml14
-rw-r--r--ffi/examples/.gitignore3
-rw-r--r--openpgp/Cargo.toml2
4 files changed, 11 insertions, 9 deletions
diff --git a/.gitignore b/.gitignore
index 353b1eb7..ac6c5b0d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@
*~
Cargo.lock
.gdb_history
+.dir-locals.el
diff --git a/Cargo.toml b/Cargo.toml
index 79b638f1..065e479c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -22,13 +22,13 @@ maintenance = { status = "actively-developed" }
[workspace]
[dependencies]
-buffered-reader = { path = "buffered-reader" }
-openpgp = { path = "openpgp" }
-sequoia-core = { path = "core" }
-sequoia-ffi = { path = "ffi" }
-sequoia-net = { path = "net" }
-sequoia-store = { path = "store" }
-sequoia-tool = { path = "tool" }
+buffered-reader = { path = "buffered-reader", version = "0.1.0" }
+openpgp = { path = "openpgp", version = "0.1.0" }
+sequoia-core = { path = "core", version = "0.1.0" }
+sequoia-ffi = { path = "ffi", version = "0.1.0" }
+sequoia-net = { path = "net", version = "0.1.0" }
+sequoia-store = { path = "store", version = "0.1.0" }
+sequoia-tool = { path = "tool", version = "0.1.0" }
[lib]
name = "sequoia"
diff --git a/ffi/examples/.gitignore b/ffi/examples/.gitignore
index 14722aac..396865df 100644
--- a/ffi/examples/.gitignore
+++ b/ffi/examples/.gitignore
@@ -2,4 +2,5 @@ configure
example
keyserver
reader
-parser \ No newline at end of file
+parser
+encrypt-for
diff --git a/openpgp/Cargo.toml b/openpgp/Cargo.toml
index 40f98f04..b91a1859 100644
--- a/openpgp/Cargo.toml
+++ b/openpgp/Cargo.toml
@@ -21,7 +21,7 @@ gitlab = { repository = "https://gitlab.com/sequoia-pgp/sequoia" }
maintenance = { status = "actively-developed" }
[dependencies]
-buffered-reader = { path = "../buffered-reader", default-features = false }
+buffered-reader = { path = "../buffered-reader", version = "0.1.0", default-features = false }
base64 = "0.9.0"
bzip2 = { version = "0.3.2", optional = true }
failure = "0.1.2"