portability/libportability-gfx/Cargo.toml
dependabot[bot] 24799a3286 Bump renderdoc from 0.3.0 to 0.5.0
Bumps [renderdoc](https://github.com/ebkalderon/renderdoc-rs) from 0.3.0 to 0.5.0.
- [Release notes](https://github.com/ebkalderon/renderdoc-rs/releases)
- [Changelog](https://github.com/ebkalderon/renderdoc-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ebkalderon/renderdoc-rs/compare/v0.3.0...v0.5.0)

---
updated-dependencies:
- dependency-name: renderdoc
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-06-12 18:22:29 -07:00

61 lines
1.6 KiB
TOML

[package]
name = "portability-gfx"
publish = false
version = "0.1.0"
edition = "2018"
authors = [
"Dzmitry Malyshau <kvark@mozilla.com>",
"Joshua Groves <josh@joshgroves.com>",
"Markus Siglreithmaier <m.siglreith@gmail.com>",
]
[lib]
name = "portability_gfx"
[features]
default = []
dispatch = []
nightly = ["fxhash", "lazy_static"]
[dependencies]
copyless = "0.1.1"
env_logger = { version = "0.8", optional = true }
fxhash = { version = "0.2", optional = true }
lazy_static = { version = "1", optional = true }
log = { version = "0.4", features = ["release_max_level_error"] }
renderdoc = { version = "0.5", optional = true }
raw-window-handle = "0.3"
[dependencies.profiling]
version = "1.0.1"
default-features = false
#features = ["profile-with-tracy"]
[dependencies.hal]
package = "gfx-hal"
git = "https://github.com/gfx-rs/gfx"
[dependencies.gfx-backend-empty]
git = "https://github.com/gfx-rs/gfx"
[target.'cfg(not(any(target_os = "macos", target_os = "ios")))'.dependencies.gfx-backend-vulkan]
git = "https://github.com/gfx-rs/gfx"
optional = true
[target.'cfg(windows)'.dependencies.gfx-backend-dx12]
git = "https://github.com/gfx-rs/gfx"
optional = true
[target.'cfg(windows)'.dependencies.gfx-backend-dx11]
git = "https://github.com/gfx-rs/gfx"
optional = true
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.gfx-backend-metal]
git = "https://github.com/gfx-rs/gfx"
#features = ["cross"]
optional = true
[target.'cfg(all(unix, not(target_os = "macos"), not(target_os = "ios")))'.dependencies.gfx-backend-gl]
git = "https://github.com/gfx-rs/gfx"
#features = ["cross"]
optional = true