wgpu/naga/Cargo.toml

73 lines
2.5 KiB
TOML
Raw Normal View History

[package]
2020-02-25 19:00:51 +00:00
name = "naga"
2024-04-28 22:06:35 +00:00
version = "0.20.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"
rust-version = "1.74"
autotests = false
[[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 = []
2020-09-14 14:27:05 +00:00
msl-out = []
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 = []
hlsl-out = []
compact = []
2022-01-13 23:57:57 +00:00
[dependencies]
arbitrary = { version = "1.3", features = ["derive"], optional = true }
build(deps): bump the patch-updates group with 35 updates (#5507) Bumps the patch-updates group with 35 updates: | Package | From | To | | --- | --- | --- | | [bitflags](https://github.com/bitflags/bitflags) | `2.4.2` | `2.5.0` | | [futures-lite](https://github.com/smol-rs/futures-lite) | `2.2.0` | `2.3.0` | | [getrandom](https://github.com/rust-random/getrandom) | `0.2.12` | `0.2.13` | | [glam](https://github.com/bitshifter/glam-rs) | `0.25.0` | `0.27.0` | | [heck](https://github.com/withoutboats/heck) | `0.4.1` | `0.5.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.114` | `1.0.115` | | [smallvec](https://github.com/servo/rust-smallvec) | `1.13.1` | `1.13.2` | | [tokio](https://github.com/tokio-rs/tokio) | `1.36.0` | `1.37.0` | | [indexmap](https://github.com/indexmap-rs/indexmap) | `2.2.5` | `2.2.6` | | [syn](https://github.com/dtolnay/syn) | `2.0.52` | `2.0.58` | | [ab_glyph](https://github.com/alexheretic/ab-glyph) | `0.2.23` | `0.2.24` | | [aho-corasick](https://github.com/BurntSushi/aho-corasick) | `1.1.2` | `1.1.3` | | [async-trait](https://github.com/dtolnay/async-trait) | `0.1.77` | `0.1.79` | | [autocfg](https://github.com/cuviper/autocfg) | `1.1.0` | `1.2.0` | | [backtrace](https://github.com/rust-lang/backtrace-rs) | `0.3.69` | `0.3.71` | | [bytes](https://github.com/tokio-rs/bytes) | `1.5.0` | `1.6.0` | | [cc](https://github.com/rust-lang/cc-rs) | `1.0.90` | `1.0.91` | | [clap](https://github.com/clap-rs/clap) | `4.5.2` | `4.5.4` | | [clap_derive](https://github.com/clap-rs/clap) | `4.5.0` | `4.5.4` | | [downcast-rs](https://github.com/marcianx/downcast-rs) | `1.2.0` | `1.2.1` | | [fastrand](https://github.com/smol-rs/fastrand) | `2.0.1` | `2.0.2` | | [half](https://github.com/starkat99/half-rs) | `2.4.0` | `2.4.1` | | [itoa](https://github.com/dtolnay/itoa) | `1.0.10` | `1.0.11` | | [memchr](https://github.com/BurntSushi/memchr) | `2.7.1` | `2.7.2` | | [pin-project-lite](https://github.com/taiki-e/pin-project-lite) | `0.2.13` | `0.2.14` | | [polling](https://github.com/smol-rs/polling) | `3.5.0` | `3.6.0` | | [rayon](https://github.com/rayon-rs/rayon) | `1.9.0` | `1.10.0` | | [regex](https://github.com/rust-lang/regex) | `1.10.3` | `1.10.4` | | [regex-syntax](https://github.com/rust-lang/regex) | `0.8.2` | `0.8.3` | | [rustix](https://github.com/bytecodealliance/rustix) | `0.38.31` | `0.38.32` | | [rustversion](https://github.com/dtolnay/rustversion) | `1.0.14` | `1.0.15` | | [uuid](https://github.com/uuid-rs/uuid) | `1.7.0` | `1.8.0` | | [widestring](https://github.com/starkat99/widestring-rs) | `1.0.2` | `1.1.0` | | [xml-rs](https://github.com/kornelski/xml-rs) | `0.8.19` | `0.8.20` | Updates `bitflags` from 2.4.2 to 2.5.0 - [Release notes](https://github.com/bitflags/bitflags/releases) - [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md) - [Commits](https://github.com/bitflags/bitflags/compare/2.4.2...2.5.0) Updates `futures-lite` from 2.2.0 to 2.3.0 - [Release notes](https://github.com/smol-rs/futures-lite/releases) - [Changelog](https://github.com/smol-rs/futures-lite/blob/master/CHANGELOG.md) - [Commits](https://github.com/smol-rs/futures-lite/compare/v2.2.0...v2.3.0) Updates `getrandom` from 0.2.12 to 0.2.13 - [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/getrandom/compare/v0.2.12...v0.2.13) Updates `heck` from 0.4.1 to 0.5.0 - [Changelog](https://github.com/withoutboats/heck/blob/master/CHANGELOG.md) - [Commits](https://github.com/withoutboats/heck/commits) Updates `serde_json` from 1.0.114 to 1.0.115 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.114...v1.0.115) Updates `smallvec` from 1.13.1 to 1.13.2 - [Release notes](https://github.com/servo/rust-smallvec/releases) - [Commits](https://github.com/servo/rust-smallvec/compare/v1.13.1...v1.13.2) Updates `tokio` from 1.36.0 to 1.37.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.36.0...tokio-1.37.0) Updates `indexmap` from 2.2.5 to 2.2.6 - [Changelog](https://github.com/indexmap-rs/indexmap/blob/master/RELEASES.md) - [Commits](https://github.com/indexmap-rs/indexmap/compare/2.2.5...2.2.6) Updates `syn` from 2.0.52 to 2.0.58 - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/compare/2.0.52...2.0.58) Updates `ab_glyph` from 0.2.23 to 0.2.24 - [Release notes](https://github.com/alexheretic/ab-glyph/releases) - [Commits](https://github.com/alexheretic/ab-glyph/compare/ab-glyph-0.2.23...ab-glyph-0.2.24) Updates `aho-corasick` from 1.1.2 to 1.1.3 - [Commits](https://github.com/BurntSushi/aho-corasick/compare/1.1.2...1.1.3) Updates `async-trait` from 0.1.77 to 0.1.79 - [Release notes](https://github.com/dtolnay/async-trait/releases) - [Commits](https://github.com/dtolnay/async-trait/compare/0.1.77...0.1.79) Updates `autocfg` from 1.1.0 to 1.2.0 - [Commits](https://github.com/cuviper/autocfg/compare/1.1.0...1.2.0) Updates `backtrace` from 0.3.69 to 0.3.71 - [Release notes](https://github.com/rust-lang/backtrace-rs/releases) - [Commits](https://github.com/rust-lang/backtrace-rs/compare/0.3.69...0.3.71) Updates `bytes` from 1.5.0 to 1.6.0 - [Release notes](https://github.com/tokio-rs/bytes/releases) - [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md) - [Commits](https://github.com/tokio-rs/bytes/compare/v1.5.0...v1.6.0) Updates `cc` from 1.0.90 to 1.0.91 - [Release notes](https://github.com/rust-lang/cc-rs/releases) - [Commits](https://github.com/rust-lang/cc-rs/compare/1.0.90...1.0.91) Updates `clap` from 4.5.2 to 4.5.4 - [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.2...v4.5.4) Updates `clap_derive` from 4.5.0 to 4.5.4 - [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.0...v4.5.4) Updates `downcast-rs` from 1.2.0 to 1.2.1 - [Changelog](https://github.com/marcianx/downcast-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/marcianx/downcast-rs/compare/v1.2.0...v1.2.1) Updates `fastrand` from 2.0.1 to 2.0.2 - [Release notes](https://github.com/smol-rs/fastrand/releases) - [Changelog](https://github.com/smol-rs/fastrand/blob/master/CHANGELOG.md) - [Commits](https://github.com/smol-rs/fastrand/compare/v2.0.1...v2.0.2) Updates `half` from 2.4.0 to 2.4.1 - [Release notes](https://github.com/starkat99/half-rs/releases) - [Changelog](https://github.com/starkat99/half-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/starkat99/half-rs/compare/v2.4.0...v2.4.1) Updates `itoa` from 1.0.10 to 1.0.11 - [Release notes](https://github.com/dtolnay/itoa/releases) - [Commits](https://github.com/dtolnay/itoa/compare/1.0.10...1.0.11) Updates `memchr` from 2.7.1 to 2.7.2 - [Commits](https://github.com/BurntSushi/memchr/compare/2.7.1...2.7.2) Updates `pin-project-lite` from 0.2.13 to 0.2.14 - [Release notes](https://github.com/taiki-e/pin-project-lite/releases) - [Changelog](https://github.com/taiki-e/pin-project-lite/blob/main/CHANGELOG.md) - [Commits](https://github.com/taiki-e/pin-project-lite/compare/v0.2.13...v0.2.14) Updates `polling` from 3.5.0 to 3.6.0 - [Release notes](https://github.com/smol-rs/polling/releases) - [Changelog](https://github.com/smol-rs/polling/blob/master/CHANGELOG.md) - [Commits](https://github.com/smol-rs/polling/compare/v3.5.0...v3.6.0) Updates `rayon` from 1.9.0 to 1.10.0 - [Changelog](https://github.com/rayon-rs/rayon/blob/main/RELEASES.md) - [Commits](https://github.com/rayon-rs/rayon/compare/rayon-core-v1.9.0...rayon-core-v1.10.0) Updates `regex` from 1.10.3 to 1.10.4 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.10.3...1.10.4) Updates `regex-syntax` from 0.8.2 to 0.8.3 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/regex-syntax-0.8.2...regex-syntax-0.8.3) Updates `rustix` from 0.38.31 to 0.38.32 - [Release notes](https://github.com/bytecodealliance/rustix/releases) - [Commits](https://github.com/bytecodealliance/rustix/compare/v0.38.31...v0.38.32) Updates `rustversion` from 1.0.14 to 1.0.15 - [Release notes](https://github.com/dtolnay/rustversion/releases) - [Commits](https://github.com/dtolnay/rustversion/compare/1.0.14...1.0.15) Updates `uuid` from 1.7.0 to 1.8.0 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.7.0...1.8.0) Updates `widestring` from 1.0.2 to 1.1.0 - [Release notes](https://github.com/starkat99/widestring-rs/releases) - [Changelog](https://github.com/starkat99/widestring-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/starkat99/widestring-rs/compare/v1.0.2...v1.1.0) Updates `xml-rs` from 0.8.19 to 0.8.20 - [Changelog](https://github.com/kornelski/xml-rs/blob/main/Changelog.md) - [Commits](https://github.com/kornelski/xml-rs/compare/0.8.19...0.8.20) --- updated-dependencies: - dependency-name: bitflags dependency-type: direct:production update-type: version-update:semver-minor dependency-group: patch-updates - dependency-name: futures-lite dependency-type: direct:production update-type: version-update:semver-minor dependency-group: patch-updates - dependency-name: getrandom dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: heck dependency-type: direct:production update-type: version-update:semver-minor dependency-group: patch-updates - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: smallvec dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: patch-updates - dependency-name: indexmap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: syn dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: ab_glyph dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: aho-corasick dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: async-trait dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: autocfg dependency-type: indirect update-type: version-update:semver-minor dependency-group: patch-updates - dependency-name: backtrace dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: bytes dependency-type: indirect update-type: version-update:semver-minor 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_derive dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: downcast-rs dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: fastrand dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: half dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: itoa dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: memchr dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: pin-project-lite dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: polling dependency-type: indirect update-type: version-update:semver-minor dependency-group: patch-updates - dependency-name: rayon dependency-type: indirect update-type: version-update:semver-minor dependency-group: patch-updates - dependency-name: regex dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: regex-syntax 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: rustversion dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: uuid dependency-type: indirect update-type: version-update:semver-minor dependency-group: patch-updates - dependency-name: widestring dependency-type: indirect update-type: version-update:semver-minor 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> Co-authored-by: Erich Gubler <erichdongubler@gmail.com>
2024-04-09 04:20:27 +00:00
bitflags = "2.5"
2022-01-13 23:57:57 +00:00
bit-set = "0.5"
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" }
2022-01-13 23:57:57 +00:00
rustc-hash = "1.1.0"
2023-08-11 14:28:28 +00:00
indexmap = { version = "2", features = ["std"] }
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 }
build(deps): bump the patch-updates group with 19 updates (#5720) Bumps the patch-updates group with 19 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.83` | `1.0.86` | | [bytemuck](https://github.com/Lokathor/bytemuck) | `1.15.0` | `1.16.0` | | [libc](https://github.com/rust-lang/libc) | `0.2.154` | `0.2.155` | | [raw-window-handle](https://github.com/rust-windowing/raw-window-handle) | `0.6.1` | `0.6.2` | | [serde](https://github.com/serde-rs/serde) | `1.0.201` | `1.0.202` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.60` | `1.0.61` | | [syn](https://github.com/dtolnay/syn) | `2.0.63` | `2.0.65` | | [cc](https://github.com/rust-lang/cc-rs) | `1.0.97` | `1.0.98` | | [crossbeam-utils](https://github.com/crossbeam-rs/crossbeam) | `0.8.19` | `0.8.20` | | [either](https://github.com/rayon-rs/either) | `1.11.0` | `1.12.0` | | [instant](https://github.com/sebcrozet/instant) | `0.1.12` | `0.1.13` | | [linux-raw-sys](https://github.com/sunfishcode/linux-raw-sys) | `0.4.13` | `0.4.14` | | [miniz_oxide](https://github.com/Frommi/miniz_oxide) | `0.7.2` | `0.7.3` | | [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.82` | `1.0.83` | | [rustversion](https://github.com/dtolnay/rustversion) | `1.0.16` | `1.0.17` | | [serde_derive](https://github.com/serde-rs/serde) | `1.0.201` | `1.0.202` | | [smol_str](https://github.com/rust-analyzer/smol_str) | `0.2.1` | `0.2.2` | | [thiserror-impl](https://github.com/dtolnay/thiserror) | `1.0.60` | `1.0.61` | | [toml_datetime](https://github.com/toml-rs/toml) | `0.6.5` | `0.6.6` | Updates `anyhow` from 1.0.83 to 1.0.86 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.83...1.0.86) Updates `bytemuck` from 1.15.0 to 1.16.0 - [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md) - [Commits](https://github.com/Lokathor/bytemuck/compare/v1.15.0...v1.16.0) Updates `libc` from 0.2.154 to 0.2.155 - [Release notes](https://github.com/rust-lang/libc/releases) - [Commits](https://github.com/rust-lang/libc/compare/0.2.154...0.2.155) Updates `raw-window-handle` from 0.6.1 to 0.6.2 - [Release notes](https://github.com/rust-windowing/raw-window-handle/releases) - [Changelog](https://github.com/rust-windowing/raw-window-handle/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-windowing/raw-window-handle/compare/v0.6.1...v0.6.2) Updates `serde` from 1.0.201 to 1.0.202 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.201...v1.0.202) Updates `thiserror` from 1.0.60 to 1.0.61 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.60...1.0.61) Updates `syn` from 2.0.63 to 2.0.65 - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/compare/2.0.63...2.0.65) Updates `cc` from 1.0.97 to 1.0.98 - [Release notes](https://github.com/rust-lang/cc-rs/releases) - [Commits](https://github.com/rust-lang/cc-rs/compare/1.0.97...1.0.98) Updates `crossbeam-utils` from 0.8.19 to 0.8.20 - [Release notes](https://github.com/crossbeam-rs/crossbeam/releases) - [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md) - [Commits](https://github.com/crossbeam-rs/crossbeam/compare/crossbeam-utils-0.8.19...crossbeam-utils-0.8.20) Updates `either` from 1.11.0 to 1.12.0 - [Commits](https://github.com/rayon-rs/either/compare/1.11.0...1.12.0) Updates `instant` from 0.1.12 to 0.1.13 - [Changelog](https://github.com/sebcrozet/instant/blob/master/CHANGELOG.md) - [Commits](https://github.com/sebcrozet/instant/commits) Updates `linux-raw-sys` from 0.4.13 to 0.4.14 - [Commits](https://github.com/sunfishcode/linux-raw-sys/compare/v0.4.13...v0.4.14) Updates `miniz_oxide` from 0.7.2 to 0.7.3 - [Changelog](https://github.com/Frommi/miniz_oxide/blob/master/CHANGELOG.md) - [Commits](https://github.com/Frommi/miniz_oxide/compare/0.7.2...0.7.3) Updates `proc-macro2` from 1.0.82 to 1.0.83 - [Release notes](https://github.com/dtolnay/proc-macro2/releases) - [Commits](https://github.com/dtolnay/proc-macro2/compare/1.0.82...1.0.83) Updates `rustversion` from 1.0.16 to 1.0.17 - [Release notes](https://github.com/dtolnay/rustversion/releases) - [Commits](https://github.com/dtolnay/rustversion/compare/1.0.16...1.0.17) Updates `serde_derive` from 1.0.201 to 1.0.202 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.201...v1.0.202) Updates `smol_str` from 0.2.1 to 0.2.2 - [Commits](https://github.com/rust-analyzer/smol_str/commits/v0.2.2) Updates `thiserror-impl` from 1.0.60 to 1.0.61 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.60...1.0.61) Updates `toml_datetime` from 0.6.5 to 0.6.6 - [Commits](https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.5...toml_datetime-v0.6.6) --- 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: libc dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: raw-window-handle dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: syn dependency-type: direct:production 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: crossbeam-utils dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: either dependency-type: indirect update-type: version-update:semver-minor dependency-group: patch-updates - dependency-name: instant dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: linux-raw-sys dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: miniz_oxide dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: proc-macro2 dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: rustversion 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: smol_str 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: toml_datetime 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-05-26 16:34:50 +00:00
thiserror = "1.0.61"
serde = { version = "1.0.202", 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 }
unicode-xid = { version = "0.2.3", optional = true }
arrayvec.workspace = true
2022-01-13 23:57:57 +00:00
[dev-dependencies]
2021-04-14 18:20:48 +00:00
diff = "0.1"
env_logger = "0.11"
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" }
2020-08-17 03:49:48 +00:00
serde = { version = "1.0", features = ["derive"] }
2024-01-05 04:30:30 +00:00
spirv = { version = "0.3", features = ["deserialize"] }