about summary refs log tree commit diff
path: root/library/test/Cargo.toml
AgeCommit message (Collapse)AuthorLines
2025-08-29Update getopts to remove unicode-width dependencybjorn3-1/+1
2025-03-11Migrate test to Rust 2024Eric Huss-1/+1
2025-02-21Use `public-dependencies` in all sysroot cratesTrevor Gross-2/+4
In [1], most dependencies of `std` and other sysroot crates were marked private, but this did not happen for `alloc` and `test`. Update these here, marking public standard library crates as the only non-private dependencies. [1]: https://github.com/rust-lang/rust/pull/111076
2024-06-10Remove some unused crate dependencies.Nicholas Nethercote-2/+0
I found these by setting the `unused_crate_dependencies` lint temporarily to `Warn`.
2024-04-14Replace libc::c_int with core::ffi::c_intChris Denton-0/+2
And remove the libc crate when it isn't needed
2024-01-30Actually abort in panic-abort-testsTyler Mandry-0/+1
2023-12-31Remove libtest's dylibBen Kimock-3/+0
2023-04-25Add a `sysroot` crate to represent the standard library cratesJohn Kåre Alsaker-20/+0
2023-02-24test: drop unused depsklensy-2/+0
2022-11-21Update test's cfg-if dependency to 1.0Collin Baker-1/+1
This change was mistakenly left out of #103367
2021-12-23Switch all libraries to the 2021 editionDeadbeef-1/+1
2021-09-25Expose the std_detect env_override featureLuca Barbato-0/+1
2021-07-29rfc3052: Remove authors field from Cargo manifestsJade-1/+0
Since RFC 3052 soft deprecated the authors field anyway, hiding it from crates.io, docs.rs, and making Cargo not add it by default, and it is not generally up to date/useful information, we should remove it from crates in this repo.
2021-07-18Move `library/term/src` to `library/test/src/term/`.Charles Lew-1/+0
2021-01-07Update `compiler_builtins` to 0.1.39Yuki Okushi-1/+1
2020-11-16libary: Forward compiler-builtins "asm" and "mangled-names" featureStefan Lankes-0/+2
Now users will be able to do: ``` cargo build -Zbuild-std=core -Zbuild-std-features=compiler-builtins-asm ``` and correctly get the assembly implemenations for `memcpy` and friends.
2020-10-21allow using the system-wide llvm-libunwind as the unwinderMarc-Antoine Perennou-0/+1
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
2020-09-27libary: Forward compiler-builtins "mem" featureJoe Richey-0/+1
This fixes https://github.com/rust-lang/wg-cargo-std-aware/issues/53 Now users will be able to do: ``` cargo build -Zbuild-std=core -Zbuild-std-features=compiler-builtins-mem ``` and correctly get the Rust implemenations for `memcpy` and friends. Signed-off-by: Joe Richey <joerichey@google.com>
2020-07-27mv std libs to library/mark-0/+33