Include Cargo.lock instead of fixed revisions

This commit is contained in:
Dzmitry Malyshau 2018-04-11 21:32:31 -04:00
parent 014ad54760
commit 64faf13e00
3 changed files with 1014 additions and 5 deletions

1
.gitignore vendored
View file

@ -4,4 +4,3 @@ conformance/*.xml
conformance/*.qpa
conformance/*.txt
**/*.rs.bk
Cargo.lock

1014
Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -25,23 +25,19 @@ optional = true
[dependencies.gfx-hal]
git = "https://github.com/gfx-rs/gfx"
rev = "efa0822a343489f3c72df9537628c1283179a6df"
#path = "../../gfx/src/hal"
[target.'cfg(not(target_os = "macos"))'.dependencies.gfx-backend-vulkan]
git = "https://github.com/gfx-rs/gfx"
rev = "efa0822a343489f3c72df9537628c1283179a6df"
#path = "../../gfx/src/backend/vulkan"
optional = true
[target.'cfg(windows)'.dependencies.gfx-backend-dx12]
git = "https://github.com/gfx-rs/gfx"
rev = "efa0822a343489f3c72df9537628c1283179a6df"
#path = "../../gfx/src/backend/dx12"
optional = true
[target.'cfg(target_os = "macos")'.dependencies.gfx-backend-metal]
git = "https://github.com/gfx-rs/gfx"
rev = "efa0822a343489f3c72df9537628c1283179a6df"
#path = "../../gfx/src/backend/metal"
optional = true