• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

src/H03-May-2022-4,3103,440

.cargo-checksum.jsonH A D03-May-202289 11

.cargo_vcs_info.jsonH A D01-Jan-197074 65

CHANGELOG.mdH A D01-Jan-19701.8 KiB8245

Cargo.tomlH A D01-Jan-19701.1 KiB3229

Cargo.toml.orig-cargoH A D01-Jan-1970558 2118

LICENSE-ApacheH A D01-Jan-197011.1 KiB203169

LICENSE-MITH A D01-Jan-19701 KiB2016

README.mdH A D01-Jan-19701.5 KiB3524

build.rsH A D01-Jan-19701.2 KiB4132

README.md

1# Standback
2
3![build status](https://github.com/jhpratt/standback/workflows/Build/badge.svg?branch=master&event=push)
4![license](https://img.shields.io/badge/license-MIT%20or%20Apache--2-brightgreen)
5![version](https://img.shields.io/crates/v/standback)
6![rustc 1.31.0](https://img.shields.io/badge/rustc-1.31.0-blue)
7
8[Documentation](https://docs.rs/standback)
9
10Standback exists to allow the usage of various APIs that have been stabilized
11since rustc 1.31.0 _without_ having to require users to upgrade their compiler.
12The best part? Only old features are built from scratch; anything stable on the
13compiler in use will just be re-exported.
14
15Note that it is sometimes the case that newly stabilized methods would require
16internal methods, direct access to fields, or nightly features to work. As such,
17not every feature is backported. Found a neat way to implement a method or type
18that is possible on stable? Pull requests are accepted!
19
20## License
21
22A majority of this code comes directly from the Rust standard library, where its
23license is the following. All new code is also released under this license.
24
25This project is licensed under either of
26
27- [Apache License, Version 2.0](https://github.com/jhpratt/standback/blob/master/LICENSE-Apache)
28- [MIT license](https://github.com/jhpratt/standback/blob/master/LICENSE-MIT)
29
30at your option.
31
32Unless you explicitly state otherwise, any contribution intentionally submitted
33for inclusion in time by you, as defined in the Apache-2.0 license, shall be
34dual licensed as above, without any additional terms or conditions.
35