about summary refs log tree commit diff
path: root/library/stdarch/crates/std_detect/Cargo.toml
AgeCommit message (Collapse)AuthorLines
2025-07-22Move `std_detect` from `library/stdarch` to `library`Jakub Beránek-41/+0
2025-06-09Remove `compiler-builtins` from `rustc-dep-of-std` dependenciesTrevor Gross-2/+0
Since [1], this will come automatically from `rustc-std-workspace-core` and the crates.io dependency should no longer be specified. [1]: https://github.com/rust-lang/rust/pull/141993
2025-05-30Add back `std_detect_env_override`sayantn-0/+1
2025-04-20Remove `cupid` dependency and `env-override-no-avx` CI runsayantn-4/+0
2025-02-09Update all crates to Rust 2024Eric Huss-1/+1
2024-04-22Don't depend on libc for cfg(windows)Ben Kimock-1/+3
2023-10-10Remove the auxv dev dependency.bjorn3-1/+0
It hasn't been used since roughly 2018. The latest published version of auxv has a less common license and doesn't specify any license in it's Cargo.toml file.
2022-10-25Edition 2021, apply clippy::uninlined_format_args fix (#1339)Yuri Astrakhan-1/+1
2022-09-11Bump `cfg-if` dependency to 1.0Charles Lew-1/+1
2022-03-17Use SPDX license format and update packed_simd crate link (#1297)Alex Touchet-1/+1
2021-08-12Remove references to the crates on crates.io.Mara Bos-1/+0
They haven't been published in years. This removes the suggestion that the crates on crates.io are actively updated/maintained.
2021-03-18Fix building std_detect as a dependency of std (#1089)Amanieu d'Antras-2/+12
2019-10-10Remove need for `#[macro_use]` with `cfg-if`Alex Crichton-2/+2
Modernizes usage of `cfg_if!` slightly
2019-10-10Remove azure pipelines badgesTaiki Endo-1/+0
2019-09-18std_detect_env_override should be disabled by defaultgnzlbg-1/+1
2019-09-17Override the features detected using an env::varLuca Barbato-2/+3
Fixes: #804
2019-08-13Update badgesgnzlbg-2/+1
2019-07-09Update repo namegnzlbg-6/+6
2019-04-17Bump patch versionsgnzlbg-1/+1
2019-02-23Test Rust2018 buildsgnzlbg-0/+1
2019-02-18Bump versions of core_arch and std_detectgnzlbg-1/+1
2019-02-09Add cargo features to disable usage of file I/O and dlsym in std_detectgnzlbg-2/+7
2019-01-30Fix docs.rs rustdoc argumentsgnzlbg-1/+1
2019-01-30Bump core_arch and std_detect versionsgnzlbg-1/+1
2019-01-30Update readme and dependenciesgnzlbg-1/+1
2019-01-30Remove core_arch dev-dependency of std_detectgnzlbg-1/+0
2019-01-30Bump core_arch and std_detect patch versiongnzlbg-2/+2
2019-01-30Update description of core_arch and std_detectgnzlbg-1/+1
2019-01-22Readme from std_detectgnzlbg-1/+1
2019-01-22Update versions of core_arch and std_detect for releasegnzlbg-2/+2
2019-01-22Refactor stdsimdgnzlbg-0/+32
This commit: * renames `coresimd` to `core_arch` and `stdsimd` to `std_detect` * `std_detect` does no longer depend on `core_arch` - it is a freestanding `no_std` library that only depends on `core` - it is renamed to `std_detect` * moves the top-level coresimd and stdsimd directories into the appropriate crates/... directories - this simplifies creating crate.io releases of these crates * moves the top-level `coresimd` and `stdsimd` sub-directories into their corresponding crates in `crates/{core_arch, std_detect}`.