Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
TeDomum
Garage
Commits
3b0b1108
Commit
3b0b1108
authored
Jul 07, 2020
by
Alex Auvolat
Browse files
Add versions to dependencies
parent
cc65cdc0
Changes
5
Hide whitespace changes
Inline
Side-by-side
src/api/Cargo.toml
View file @
3b0b1108
...
...
@@ -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"
...
...
src/garage/Cargo.toml
View file @
3b0b1108
...
...
@@ -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"
...
...
src/model/Cargo.toml
View file @
3b0b1108
...
...
@@ -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"
...
...
src/rpc/Cargo.toml
View file @
3b0b1108
...
...
@@ -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"
...
...
src/table/Cargo.toml
View file @
3b0b1108
...
...
@@ -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"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment