summaryrefslogtreecommitdiff
path: root/README.md
AgeCommit message (Collapse)Author
2020-05-31Convert the crate to edition 2018Alan Somers
2020-05-19Add Redox to Tier 3Xavier L'Heureux
2020-02-03Release 0.17.0Alan Somers
2019-12-23Release v0.16.1Alan Somers
2019-12-01Release v0.16.0Alan Somers
2019-08-28Raise minimum supported Rust version to 1.36.0Otavio Salvador
The minimum supported Rust version is being raised to 1.36.0 as this is the first release to support the `mem::MaybeUninit` feature. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2019-08-10Release v0.15.0Alan Somers
2019-07-13Fix warnings on Rust 1.37.0Alan Somers
* Replace obsolete range syntax "..." with inclusive range "..=" * Use dyn Trait syntax instead of Box<Trait> * Raise MSRV to 1.27.0 (for dyn Trait syntax) * Raise MSRV to 1.31.0 (because of rand) tempfile pulls in rand, and rand pulls in fuchsia-cprng, which requires 1.31.0. Why rand pulls in fuchsia-cprng I don't know. It's specified as a target-specific dependency, but Cargo tries to build it anyway (only on Linux, not on FreeBSD or OSX). A bug in Cargo 1.27.0?
2019-06-09Enable libc extra_traits featureBryant Mairs
Also bump Rust requirement to 1.25 which is a requirement of that feature
2019-06-06Release v0.14.1Alan Somers
2019-05-21Release v0.14.0Alan Somers
2019-01-15Prepare for release 0.13.0Alan Somers
2018-11-28Bump version to 0.12.0Alan Somers
2018-11-05Require Rust 1.24.1Bryant Mairs
lazy_static as of 1.2 requires Rust 1.24.1, so make that our minimum required version
2018-09-01deps: update tempfile to 3Igor Gnatenko
Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
2018-06-01Set the 0.11 releaseBryant Mairs
2018-01-26Bump version to 0.10.0Alan Somers
2017-12-24Fix typo in READMEAaron Hill
2017-12-10Remove references to developer docsBryant Mairs
This hasn't been available for a while now. And was not updated for even longer before that. Let's not mislead our users any longer.
2017-12-05Remove nix-test subcrateBryant Mairs
This was doing testing for errno constants and a few other types that is no longer necessary now that these types are all tested within the libc project itself.
2017-12-02Upgrade to Bitflags 1.0Bryant Mairs
The libc_bitflags! macro was replaced with a non-recursive one supporting only public structs. I could not figure out how to make the old macro work with the upgrade, so I reworked part of the bitflags! macro directly to suit our needs, much as the original recursive macro was made. There are no uses of this macro for non-public structs, so this is not a problem for internal code.
2017-10-14Promote i686-unknown-freebsd to Tier1 in the READMEAlan Somers
We effectively made it Tier1 back in ec6fe0629df87d8355cbdba8b7a0855934a5ac9e, but never updated the README.
2017-07-24Disable failing tests on mips64Bryant Mairs
These are assumed to be QEMU issues, as they also fail on mips.
2017-07-24Move Tier 3s to Tier 2Bryant Mairs
2017-07-23Release 0.9.0Alan Somers
2017-07-18Downgrade powerpc/Linux/Gnu to Tier 2Bryant Mairs
2017-07-10Alphabetize Tier 1 supported platformsBryant Mairs
2017-07-10Enable termios on iOS and move it to Tier 2Bryant Mairs
2017-07-08arm-unknown-linux-musleabi is only supported on Rust 1.14+Bryant Mairs
2017-07-07Add arm/musl, mips64, and s390x linux targets to Tier3Bryant Mairs
2017-07-07README.md: update gethostname apiJörg Thalheim
2017-07-04Make Android a Tier 2 targetroblabla
2017-07-03Add iOS as a Tier 3 platformBryant Mairs
2017-06-30Add all Android targets as Tier 3 platformsBryant Mairs
2017-06-20doc: Add powerpc64 as tier 1Luca Barbato
2017-06-06Fix x86_64 Linux/musl testsBryant Mairs
Seems that pretty much all aio tests fail on x64 musl builds.
2017-06-06Fix i686 Linux/musl buildsBryant Mairs
2017-06-06Switch to two tiers of supported platformsBryant Mairs
2017-06-06Skip failing MIPS testsBryant Mairs
2017-06-06Skip failing tests for Linux/PowerPCBryant Mairs
2017-06-04Integrate the FreeBSD BuildBotAlan Somers
* Gate Bors on the FreeBSD 11 build * Remove the testless FreeBSD build from Travis * Promote x86_64-unknown-freebsd to Tier 1 Fixes #603
2017-06-03Add gitter link to READMEBryant Mairs
2017-04-15List supported targets in the READMEBryant Mairs
2017-04-15Increase minimum supported Rust version.Bryant Mairs
We need to raise it up to 1.13 because our test infrastructure requires it
2017-03-01Release v0.8.0Kamal Marhubi
closes #519
2017-02-26Update minimum supported Rust version to 1.9.0Bryant Mairs
2017-02-24Specify Rust minimum version requirementsBryant Mairs
2016-12-10Add link to release documentationPhilipp Matthias Schaefer
2016-09-09Release v0.7.0Philipp Matthias Schaefer
2016-07-12docs: update readme to be a bit more usefulPaul Osborne
This started out as a small change to update the readme to include an updated pointer to the documentation on gh-pages and ended with a bit of an overhaul in order to provide better information for people just checking out nix for the first time. Signed-off-by: Paul Osborne <osbpau@gmail.com>