aboutsummaryrefslogtreecommitdiff
path: root/src/model
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2020-07-08 16:10:53 +0200
committerAlex Auvolat <alex@adnab.me>2020-07-08 16:10:53 +0200
commit86bf4dedac2cc7ecfe9ca539f5500d162eabe704 (patch)
tree27014f21053581958c097988d1f5053560316dc5 /src/model
parent86fb7bbba5aefc797f359bd84676637f0232b709 (diff)
downloadgarage-86bf4dedac2cc7ecfe9ca539f5500d162eabe704.tar.gz
garage-86bf4dedac2cc7ecfe9ca539f5500d162eabe704.zip
Add support for model migrations
Diffstat (limited to 'src/model')
-rw-r--r--src/model/Cargo.toml5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/model/Cargo.toml b/src/model/Cargo.toml
index 76d759fd..a138691d 100644
--- a/src/model/Cargo.toml
+++ b/src/model/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "garage_model"
-version = "0.1.0"
+version = "0.1.1"
authors = ["Alex Auvolat <alex@adnab.me>"]
edition = "2018"
license = "GPL-3.0"
@@ -15,7 +15,8 @@ path = "lib.rs"
[dependencies]
garage_util = { version = "0.1", path = "../util" }
garage_rpc = { version = "0.1", path = "../rpc" }
-garage_table = { version = "0.1", path = "../table" }
+garage_table = { version = "0.1.1", path = "../table" }
+model010 = { package = "garage_model", version = "0.1.0" }
bytes = "0.4"
rand = "0.7"