gecko-dev/gfx/qcms/Cargo.toml
Jeff Muizelaar 73676e66aa Bug 1882291. Switch to stdarch_arm_neon_intrinsics feature on rust >=1.78. r=glandium
We only need this on ARM32 because the ARM64 intrinsics are stable.

stdarch_arm_neon_intrinsics was split out from stdsimd here:
https://github.com/rust-lang/stdarch/pull/1486

Differential Revision: https://phabricator.services.mozilla.com/D203039
2024-03-05 03:12:28 +00:00

26 lines
571 B
TOML

[package]
name = "qcms"
authors = ["Jeff Muizelaar", "Benoit Girard", "Andrew Osmond"]
version = "0.3.0"
edition = "2018"
include = ["src/**/*", "build.rs"]
description = "lightweight color management"
documentation = "https://docs.rs/qcms"
license = "MIT"
repository = "https://github.com/FirefoxGraphics/qcms"
keywords = ["color"]
categories = ["graphics"]
[features]
default = ["iccv4-enabled", "cmyk"]
c_bindings = ["libc"]
neon = []
iccv4-enabled = []
cmyk = []
[dependencies]
libc = {version = "0.2", optional = true }
[build-dependencies]
version_check = "0.9"