diff options
author | Alex Auvolat <alex@adnab.me> | 2020-07-08 16:10:53 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-07-08 16:10:53 +0200 |
commit | 86bf4dedac2cc7ecfe9ca539f5500d162eabe704 (patch) | |
tree | 27014f21053581958c097988d1f5053560316dc5 /src/api | |
parent | 86fb7bbba5aefc797f359bd84676637f0232b709 (diff) | |
download | garage-86bf4dedac2cc7ecfe9ca539f5500d162eabe704.tar.gz garage-86bf4dedac2cc7ecfe9ca539f5500d162eabe704.zip |
Add support for model migrations
Diffstat (limited to 'src/api')
-rw-r--r-- | src/api/Cargo.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/api/Cargo.toml b/src/api/Cargo.toml index f9cd32b2..c8c5bf22 100644 --- a/src/api/Cargo.toml +++ b/src/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "garage_api" -version = "0.1.0" +version = "0.1.1" authors = ["Alex Auvolat <alex@adnab.me>"] edition = "2018" license = "GPL-3.0" @@ -14,8 +14,8 @@ path = "lib.rs" [dependencies] garage_util = { version = "0.1", path = "../util" } -garage_table = { version = "0.1", path = "../table" } -garage_model = { version = "0.1", path = "../model" } +garage_table = { version = "0.1.1", path = "../table" } +garage_model = { version = "0.1.1", path = "../model" } bytes = "0.4" hex = "0.3" |