diff options
author | mricher <maximilien.richer@gmail.com> | 2021-09-28 08:57:20 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-03-14 10:51:12 +0100 |
commit | e349af13a7268d567c1bacc819af5b89c2d4231f (patch) | |
tree | b50fc78efac150bbf3c005c33d39a874c5e37b41 /src/garage/Cargo.toml | |
parent | 9d44127245990cc55dbdff5a4bd0a1524348f110 (diff) | |
download | garage-e349af13a7268d567c1bacc819af5b89c2d4231f.tar.gz garage-e349af13a7268d567c1bacc819af5b89c2d4231f.zip |
Update dependencies and add admin module with metrics
- Global dependencies updated in Cargo.lock
- New module created in src/admin to host:
- the (future) admin REST API
- the metric collection
- add configuration block
No metrics implemented yet
Diffstat (limited to 'src/garage/Cargo.toml')
-rw-r--r-- | src/garage/Cargo.toml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/garage/Cargo.toml b/src/garage/Cargo.toml index 463f83e7..22e0f0f0 100644 --- a/src/garage/Cargo.toml +++ b/src/garage/Cargo.toml @@ -27,6 +27,7 @@ garage_rpc = { version = "0.6.0", path = "../rpc" } garage_table = { version = "0.6.0", path = "../table" } garage_util = { version = "0.6.0", path = "../util" } garage_web = { version = "0.6.0", path = "../web" } +garage_admin = { version = "0.6.0", path = "../admin" } bytes = "1.0" git-version = "0.3.4" |