wgpu/naga/Cargo.toml

104 lines
3.9 KiB
TOML
Raw Normal View History

[package]
2020-02-25 19:00:51 +00:00
name = "naga"
2024-07-17 21:05:46 +00:00
version = "22.0.0"
authors = ["gfx-rs developers"]
edition = "2021"
2020-02-27 04:28:18 +00:00
description = "Shader translation infrastructure"
repository = "https://github.com/gfx-rs/wgpu/tree/trunk/naga"
2021-04-01 13:34:07 +00:00
keywords = ["shader", "SPIR-V", "GLSL", "MSL"]
2020-06-18 20:51:51 +00:00
license = "MIT OR Apache-2.0"
2021-06-03 16:06:42 +00:00
exclude = ["bin/**/*", "tests/**/*", "Cargo.lock", "target/**/*"]
resolver = "2"
autotests = false
# Override the workspace's `rust-version` key. Firefox uses `cargo vendor` to
# copy the crates it actually uses out of the workspace, so it's meaningful for
# them to have less restrictive MSRVs individually than the workspace as a
# whole, if their code permits. See `../README.md` for details.
rust-version = "1.76"
[[test]]
name = "naga-test"
path = "tests/root.rs"
2021-04-01 13:34:07 +00:00
[package.metadata.docs.rs]
all-features = true
[features]
default = []
2021-03-02 06:28:32 +00:00
dot-out = []
glsl-in = ["dep:pp-rs"]
glsl-out = []
## Enables outputting to the Metal Shading Language (MSL).
##
## This enables MSL output regardless of the target platform.
## If you want to enable it only when targeting iOS/tvOS/watchOS/macOS, use `naga/msl-out-if-target-apple`.
2020-09-14 14:27:05 +00:00
msl-out = []
## Enables outputting to the Metal Shading Language (MSL) only if the target platform is iOS/tvOS/watchOS/macOS.
##
## If you want to enable MSL output it regardless of the target platform, use `naga/msl-out`.
msl-out-if-target-apple = []
serialize = ["dep:serde", "bitflags/serde", "indexmap/serde"]
deserialize = ["dep:serde", "bitflags/serde", "indexmap/serde"]
2023-06-01 13:40:47 +00:00
arbitrary = ["dep:arbitrary", "bitflags/arbitrary", "indexmap/arbitrary"]
spv-in = ["dep:petgraph", "dep:spirv"]
spv-out = ["dep:spirv"]
wgsl-in = ["dep:hexf-parse", "dep:unicode-xid", "compact"]
2021-04-19 04:23:27 +00:00
wgsl-out = []
## Enables outputting to HLSL (Microsoft's High-Level Shader Language).
##
## This enables HLSL output regardless of the target platform.
## If you want to enable it only when targeting Windows, use `hlsl-out-if-target-windows`.
hlsl-out = []
## Enables outputting to HLSL (Microsoft's High-Level Shader Language) only if the target platform is Windows.
##
## If you want to enable HLSL output it regardless of the target platform, use `naga/hlsl-out`.
hlsl-out-if-target-windows = []
compact = []
2022-01-13 23:57:57 +00:00
[dependencies]
arbitrary = { version = "1.3", features = ["derive"], optional = true }
arrayvec.workspace = true
bitflags.workspace = true
bit-set.workspace = true
termcolor = { version = "1.4.1" }
2022-04-16 13:09:56 +00:00
# remove termcolor dep when updating to the next version of codespan-reporting
# termcolor minimum version was wrong and was fixed in
# https://github.com/brendanzab/codespan/commit/e99c867339a877731437e7ee6a903a3d03b5439e
codespan-reporting = { version = "0.11.0" }
rustc-hash.workspace = true
indexmap.workspace = true
2022-01-13 23:57:57 +00:00
log = "0.4"
2024-01-05 04:30:30 +00:00
spirv = { version = "0.3", optional = true }
thiserror.workspace = true
build(deps): bump the patch-updates group with 21 updates (#6239) Bumps the patch-updates group with 21 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.86` | `1.0.87` | | [bytemuck](https://github.com/Lokathor/bytemuck) | `1.17.1` | `1.18.0` | | [serde](https://github.com/serde-rs/serde) | `1.0.209` | `1.0.210` | | [serde_json](https://github.com/serde-rs/json) | `1.0.127` | `1.0.128` | | [backtrace](https://github.com/rust-lang/backtrace-rs) | `0.3.73` | `0.3.74` | | [cc](https://github.com/rust-lang/cc-rs) | `1.1.15` | `1.1.18` | | [clap](https://github.com/clap-rs/clap) | `4.5.16` | `4.5.17` | | [clap_builder](https://github.com/clap-rs/clap) | `4.5.15` | `4.5.17` | | [gimli](https://github.com/gimli-rs/gimli) | `0.29.0` | `0.31.0` | | [parking](https://github.com/smol-rs/parking) | `2.2.0` | `2.2.1` | | [plotters](https://github.com/plotters-rs/plotters) | `0.3.6` | `0.3.7` | | [plotters-backend](https://github.com/plotters-rs/plotters) | `0.3.6` | `0.3.7` | | [plotters-svg](https://github.com/plotters-rs/plotters) | `0.3.6` | `0.3.7` | | [rustix](https://github.com/bytecodealliance/rustix) | `0.38.35` | `0.38.36` | | [serde_derive](https://github.com/serde-rs/serde) | `1.0.209` | `1.0.210` | | [wayland-backend](https://github.com/smithay/wayland-rs) | `0.3.6` | `0.3.7` | | [wayland-client](https://github.com/smithay/wayland-rs) | `0.31.5` | `0.31.6` | | [wayland-cursor](https://github.com/smithay/wayland-rs) | `0.31.5` | `0.31.6` | | [wayland-scanner](https://github.com/smithay/wayland-rs) | `0.31.4` | `0.31.5` | | [wayland-sys](https://github.com/smithay/wayland-rs) | `0.31.4` | `0.31.5` | | [xml-rs](https://github.com/kornelski/xml-rs) | `0.8.21` | `0.8.22` | Updates `anyhow` from 1.0.86 to 1.0.87 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.86...1.0.87) Updates `bytemuck` from 1.17.1 to 1.18.0 - [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md) - [Commits](https://github.com/Lokathor/bytemuck/compare/v1.17.1...v1.18.0) Updates `serde` from 1.0.209 to 1.0.210 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.209...v1.0.210) Updates `serde_json` from 1.0.127 to 1.0.128 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/1.0.127...1.0.128) Updates `backtrace` from 0.3.73 to 0.3.74 - [Release notes](https://github.com/rust-lang/backtrace-rs/releases) - [Commits](https://github.com/rust-lang/backtrace-rs/compare/0.3.73...0.3.74) Updates `cc` from 1.1.15 to 1.1.18 - [Release notes](https://github.com/rust-lang/cc-rs/releases) - [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-lang/cc-rs/compare/cc-v1.1.15...cc-v1.1.18) Updates `clap` from 4.5.16 to 4.5.17 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.16...clap_complete-v4.5.17) Updates `clap_builder` from 4.5.15 to 4.5.17 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.5.15...v4.5.17) Updates `gimli` from 0.29.0 to 0.31.0 - [Changelog](https://github.com/gimli-rs/gimli/blob/master/CHANGELOG.md) - [Commits](https://github.com/gimli-rs/gimli/compare/0.29.0...0.31.0) Updates `parking` from 2.2.0 to 2.2.1 - [Release notes](https://github.com/smol-rs/parking/releases) - [Changelog](https://github.com/smol-rs/parking/blob/master/CHANGELOG.md) - [Commits](https://github.com/smol-rs/parking/compare/v2.2.0...v2.2.1) Updates `plotters` from 0.3.6 to 0.3.7 - [Changelog](https://github.com/plotters-rs/plotters/blob/master/CHANGELOG.md) - [Commits](https://github.com/plotters-rs/plotters/compare/v0.3.6...v0.3.7) Updates `plotters-backend` from 0.3.6 to 0.3.7 - [Changelog](https://github.com/plotters-rs/plotters/blob/master/CHANGELOG.md) - [Commits](https://github.com/plotters-rs/plotters/compare/v0.3.6...v0.3.7) Updates `plotters-svg` from 0.3.6 to 0.3.7 - [Changelog](https://github.com/plotters-rs/plotters/blob/master/CHANGELOG.md) - [Commits](https://github.com/plotters-rs/plotters/compare/v0.3.6...v0.3.7) Updates `rustix` from 0.38.35 to 0.38.36 - [Release notes](https://github.com/bytecodealliance/rustix/releases) - [Commits](https://github.com/bytecodealliance/rustix/compare/v0.38.35...v0.38.36) Updates `serde_derive` from 1.0.209 to 1.0.210 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.209...v1.0.210) Updates `wayland-backend` from 0.3.6 to 0.3.7 - [Release notes](https://github.com/smithay/wayland-rs/releases) - [Changelog](https://github.com/Smithay/wayland-rs/blob/master/historical_changelog.md) - [Commits](https://github.com/smithay/wayland-rs/commits) Updates `wayland-client` from 0.31.5 to 0.31.6 - [Release notes](https://github.com/smithay/wayland-rs/releases) - [Changelog](https://github.com/Smithay/wayland-rs/blob/master/historical_changelog.md) - [Commits](https://github.com/smithay/wayland-rs/commits) Updates `wayland-cursor` from 0.31.5 to 0.31.6 - [Release notes](https://github.com/smithay/wayland-rs/releases) - [Changelog](https://github.com/Smithay/wayland-rs/blob/master/historical_changelog.md) - [Commits](https://github.com/smithay/wayland-rs/commits) Updates `wayland-scanner` from 0.31.4 to 0.31.5 - [Release notes](https://github.com/smithay/wayland-rs/releases) - [Changelog](https://github.com/Smithay/wayland-rs/blob/master/historical_changelog.md) - [Commits](https://github.com/smithay/wayland-rs/commits) Updates `wayland-sys` from 0.31.4 to 0.31.5 - [Release notes](https://github.com/smithay/wayland-rs/releases) - [Changelog](https://github.com/Smithay/wayland-rs/blob/master/historical_changelog.md) - [Commits](https://github.com/smithay/wayland-rs/commits) Updates `xml-rs` from 0.8.21 to 0.8.22 - [Changelog](https://github.com/kornelski/xml-rs/blob/main/Changelog.md) - [Commits](https://github.com/kornelski/xml-rs/compare/0.8.21...0.8.22) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: bytemuck dependency-type: direct:production update-type: version-update:semver-minor dependency-group: patch-updates - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: backtrace dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: cc dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: clap dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: clap_builder dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: gimli dependency-type: indirect update-type: version-update:semver-minor dependency-group: patch-updates - dependency-name: parking dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: plotters dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: plotters-backend dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: plotters-svg dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: rustix dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: serde_derive dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: wayland-backend dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: wayland-client dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: wayland-cursor dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: wayland-scanner dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: wayland-sys dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: xml-rs dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-09-09 13:04:28 +00:00
serde = { version = "1.0.210", features = ["derive"], optional = true }
2023-10-25 17:16:06 +00:00
petgraph = { version = "0.6", optional = true }
2022-01-13 23:57:57 +00:00
pp-rs = { version = "0.2.1", optional = true }
hexf-parse = { version = "0.2.1", optional = true }
build(deps): bump the patch-updates group with 9 updates (#6312) Bumps the patch-updates group with 9 updates: | Package | From | To | | --- | --- | --- | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.63` | `1.0.64` | | [unicode-xid](https://github.com/unicode-rs/unicode-xid) | `0.2.5` | `0.2.6` | | [clap](https://github.com/clap-rs/clap) | `4.5.17` | `4.5.18` | | [clap_builder](https://github.com/clap-rs/clap) | `4.5.17` | `4.5.18` | | [clap_derive](https://github.com/clap-rs/clap) | `4.5.13` | `4.5.18` | | [quick-xml](https://github.com/tafia/quick-xml) | `0.36.1` | `0.36.2` | | [thiserror-impl](https://github.com/dtolnay/thiserror) | `1.0.63` | `1.0.64` | | [unicode-id-start](https://github.com/Boshen/unicode-id-start) | `1.2.0` | `1.3.0` | | [unicode-width](https://github.com/unicode-rs/unicode-width) | `0.1.13` | `0.1.14` | Updates `thiserror` from 1.0.63 to 1.0.64 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.63...1.0.64) Updates `unicode-xid` from 0.2.5 to 0.2.6 - [Changelog](https://github.com/unicode-rs/unicode-xid/blob/master/CHANGELOG.md) - [Commits](https://github.com/unicode-rs/unicode-xid/compare/v0.2.5...v0.2.6) Updates `clap` from 4.5.17 to 4.5.18 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.17...clap_complete-v4.5.18) Updates `clap_builder` from 4.5.17 to 4.5.18 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.5.17...v4.5.18) Updates `clap_derive` from 4.5.13 to 4.5.18 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.5.13...v4.5.18) Updates `quick-xml` from 0.36.1 to 0.36.2 - [Release notes](https://github.com/tafia/quick-xml/releases) - [Changelog](https://github.com/tafia/quick-xml/blob/master/Changelog.md) - [Commits](https://github.com/tafia/quick-xml/compare/v0.36.1...v0.36.2) Updates `thiserror-impl` from 1.0.63 to 1.0.64 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.63...1.0.64) Updates `unicode-id-start` from 1.2.0 to 1.3.0 - [Commits](https://github.com/Boshen/unicode-id-start/commits) Updates `unicode-width` from 0.1.13 to 0.1.14 - [Commits](https://github.com/unicode-rs/unicode-width/compare/v0.1.13...v0.1.14) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: unicode-xid dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: clap dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: clap_builder dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: clap_derive dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: quick-xml dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: thiserror-impl dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: unicode-id-start dependency-type: indirect update-type: version-update:semver-minor dependency-group: patch-updates - dependency-name: unicode-width dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-09-23 03:24:12 +00:00
unicode-xid = { version = "0.2.6", optional = true }
2022-01-13 23:57:57 +00:00
[build-dependencies]
cfg_aliases.workspace = true
[dev-dependencies]
2021-04-14 18:20:48 +00:00
diff = "0.1"
env_logger.workspace = true
itertools.workspace = true
2024-01-17 19:47:13 +00:00
# This _cannot_ have a version specified. If it does, crates.io will look
# for a version of the package on crates when we publish naga. Path dependencies
# are allowed through though.
hlsl-snapshots = { path = "./hlsl-snapshots" }
# Require at least version 0.7.1 of ron, this version changed how floating points are
# serialized by forcing them to always have the decimal part, this makes it backwards
# incompatible with our tests because we do a syntactic diff and not a semantic one.
2023-07-20 00:44:33 +00:00
ron = "0.8.0"
2023-04-03 20:01:16 +00:00
rspirv = { version = "0.11", git = "https://github.com/gfx-rs/rspirv", rev = "b969f175d5663258b4891e44b76c1544da9661ab" }
serde = { workspace = true, features = ["derive"] }
2024-01-05 04:30:30 +00:00
spirv = { version = "0.3", features = ["deserialize"] }