aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2020-07-07 14:18:47 +0200
committerAlex Auvolat <alex@adnab.me>2020-07-07 14:18:47 +0200
commit3b0b11085e0501afcc16f6a75632a4d425146158 (patch)
tree7b47c0246d76c61b5607ee6aa72e7250b9136b8a
parentcc65cdc0fe49f8efdf82a42493a71dbf1b116bb2 (diff)
downloadgarage-0.1.0.tar.gz
garage-0.1.0.zip
Add versions to dependencies0.1.0
-rw-r--r--src/api/Cargo.toml6
-rw-r--r--src/garage/Cargo.toml10
-rw-r--r--src/model/Cargo.toml6
-rw-r--r--src/rpc/Cargo.toml2
-rw-r--r--src/table/Cargo.toml4
5 files changed, 14 insertions, 14 deletions
diff --git a/src/api/Cargo.toml b/src/api/Cargo.toml
index e5381111..410adbb3 100644
--- a/src/api/Cargo.toml
+++ b/src/api/Cargo.toml
@@ -13,9 +13,9 @@ path = "lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-garage_util = { path = "../util" }
-garage_table = { path = "../table" }
-garage_model = { path = "../model" }
+garage_util = { version = "0.1", path = "../util" }
+garage_table = { version = "0.1", path = "../table" }
+garage_model = { version = "0.1", path = "../model" }
bytes = "0.4"
hex = "0.3"
diff --git a/src/garage/Cargo.toml b/src/garage/Cargo.toml
index 1aab6274..8e64cf34 100644
--- a/src/garage/Cargo.toml
+++ b/src/garage/Cargo.toml
@@ -14,11 +14,11 @@ path = "main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-garage_util = { path = "../util" }
-garage_rpc = { path = "../rpc" }
-garage_table = { path = "../table" }
-garage_model = { path = "../model" }
-garage_api = { path = "../api" }
+garage_util = { version = "0.1", path = "../util" }
+garage_rpc = { version = "0.1", path = "../rpc" }
+garage_table = { version = "0.1", path = "../table" }
+garage_model = { version = "0.1", path = "../model" }
+garage_api = { version = "0.1", path = "../api" }
bytes = "0.4"
rand = "0.7"
diff --git a/src/model/Cargo.toml b/src/model/Cargo.toml
index 66ee76b5..76d759fd 100644
--- a/src/model/Cargo.toml
+++ b/src/model/Cargo.toml
@@ -13,9 +13,9 @@ path = "lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-garage_util = { path = "../util" }
-garage_rpc = { path = "../rpc" }
-garage_table = { path = "../table" }
+garage_util = { version = "0.1", path = "../util" }
+garage_rpc = { version = "0.1", path = "../rpc" }
+garage_table = { version = "0.1", path = "../table" }
bytes = "0.4"
rand = "0.7"
diff --git a/src/rpc/Cargo.toml b/src/rpc/Cargo.toml
index b00f5cb0..0b6f6907 100644
--- a/src/rpc/Cargo.toml
+++ b/src/rpc/Cargo.toml
@@ -13,7 +13,7 @@ path = "lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-garage_util = { path = "../util" }
+garage_util = { version = "0.1", path = "../util" }
bytes = "0.4"
rand = "0.7"
diff --git a/src/table/Cargo.toml b/src/table/Cargo.toml
index 60323e43..7efdbb08 100644
--- a/src/table/Cargo.toml
+++ b/src/table/Cargo.toml
@@ -13,8 +13,8 @@ path = "lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-garage_util = { path = "../util" }
-garage_rpc = { path = "../rpc" }
+garage_util = { version = "0.1", path = "../util" }
+garage_rpc = { version = "0.1", path = "../rpc" }
bytes = "0.4"
rand = "0.7"