Home
last modified time | relevance | path

Searched +full:build +full:- +full:msrv (Results 1 – 25 of 103) sorted by relevance

12345

/external/rust/crates/sharded-slab/.github/workflows/
Dci.yml9 RUSTFLAGS: -Dwarnings
11 MSRV: 1.42.0
14 build:
15 name: Build (stable, ${{ matrix.target }})
16 runs-on: ubuntu-latest
20 - x86_64-unknown-linux-gnu
21 - i686-unknown-linux-musl
23 - uses: actions/checkout@master
24 - name: Install toolchain
25 uses: actions-rs/toolchain@v1
[all …]
/external/rust/crates/zerocopy/
Dcargo.sh5 # Licensed under a BSD-style license <LICENSE-BSD>, Apache License, Version 2.0
6 # <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0>, or the MIT
7 # license <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your option.
11 # This script is a thin wrapper around Cargo that provides human-friendly
15 # cargo.sh --version <toolchain-name> # looks up the version for the named toolchain
16 # cargo.sh +<toolchain-name> [...] # runs cargo commands with the named toolchain
19 # The meta-toolchain "all" instructs this script to run the provided command
20 # once for each toolchain (msrv, stable, nightly).
25 # TRYBUILD=overwrite ./cargo.sh +all test --workspace
27 set -eo pipefail
[all …]
/external/rust/crates/zeroize_derive/
DREADME.md3 [![Crate][crate-image]][crate-link]
4 ![Apache 2.0 Licensed/MIT][license-image]
5 ![MSRV][rustc-image]
6 [![Build Status][build-image]][build-link]
18 In the future, we reserve the right to change MSRV (i.e. MSRV is out-of-scope
26 * [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0)
34 for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
39 [crate-image]: https://img.shields.io/crates/v/zeroize_derive.svg
40 [crate-link]: https://crates.io/crates/zeroize_derive
41 [license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
[all …]
DCHANGELOG.md7 ## 1.4.2 (2023-03-30)
9 - Inject where clauses; skip unused ([#882])
13 ## 1.4.1 (2023-03-27)
15 - Do not automatically inject bounds ([#879])
19 ## 1.4.0 (2023-03-26)
21 - 2021 edition upgrade; MSRV 1.56 ([#869])
22 - Bump `syn` to v2 ([#858])
25 - `synstructure` dependency ([#858])
30 ## 1.3.3 (2022-11-30)
32 - Deriving `ZeroizeOnDrop` on items with generics ([#787])
[all …]
/external/rust/crates/itertools/.github/workflows/
Dci.yml7 - staging
8 - trying
11 msrv:
12 name: Rust MSRV
13 runs-on: ubuntu-latest
15 - uses: actions/checkout@v2
16 - uses: dtolnay/rust-toolchain@1.36.0
17 - run: cargo check --no-default-features
18 - run: cargo check --no-default-features --features "use_alloc"
19 - run: cargo check
[all …]
/external/rust/crates/zeroize/
DREADME.md3 [![Crate][crate-image]][crate-link]
4 [![Docs][docs-image]][docs-link]
5 ![Apache 2.0/MIT Licensed][license-image]
6 ![MSRV][rustc-image]
7 [![Build Status][build-image]][build-link]
20 [Zeroing memory securely is hard] - compilers optimize for performance, and
26 and [core::sync::atomic] memory fences to provide easy-to-use, portable
30 - No insecure fallbacks!
31 - No dependencies!
32 - No FFI or inline assembly! **WASM friendly** (and tested)!
[all …]
DCHANGELOG.md7 ## 1.6.0 (2023-03-26)
9 - Impl `Zeroize` for `core::num::Wrapping` ([#818])
10 - Impl `Zeroize` for `str` and `Box<str>` ([#842])
13 - 2021 edition upgrade; MSRV 1.56 ([#869])
19 ## 1.5.7 (2022-07-20)
21 - Optional `serde` support ([#780])
25 ## 1.5.6 (2022-06-29)
27 - `#[inline(always)]` annotations ([#772])
28 - `#[ignore]` attribute on flaky CString test ([#776])
31 - Factor integration tests into `tests/` ([#771])
[all …]
/external/rust/crates/either/.github/workflows/
Dci.yml11 runs-on: ubuntu-latest
13 fail-fast: false
16 - 1.36.0 # MSRV
17 - stable
18 - beta
19 - nightly
21 - ""
22 - "serde"
25 - name: Checkout
28 - name: Set up Rust
[all …]
/external/rust/crates/cast/.github/workflows/
Dci.yml12 runs-on: ubuntu-latest
17 - x86_64-unknown-linux-gnu
18 - i686-unknown-linux-musl
21 - uses: actions/checkout@v2
22 - uses: actions-rs/toolchain@v1
29 - uses: actions-rs/cargo@v1
32 args: --target ${{ matrix.target }}
34 - uses: actions-rs/cargo@v1
37 args: --target ${{ matrix.target }} --features std
39 # only cargo build
[all …]
/external/rust/crates/tokio/
DREADME.md6 * **Fast**: Tokio's zero-cost abstractions give you bare-metal
15 [![Crates.io][crates-badge]][crates-url]
16 [![MIT licensed][mit-badge]][mit-url]
17 [![Build Status][actions-badge]][actions-url]
18 [![Discord chat][discord-badge]][discord-url]
20 [crates-badge]: https://img.shields.io/crates/v/tokio.svg
21 [crates-url]: https://crates.io/crates/tokio
22 [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
23 [mit-url]: https://github.com/tokio-rs/tokio/blob/master/LICENSE
24 [actions-badge]: https://github.com/tokio-rs/tokio/workflows/CI/badge.svg
[all …]
/external/rust/crates/log/.github/workflows/
Dmain.yml7 runs-on: ${{ matrix.os }}
10 build: [stable, beta, nightly, macos, win32, win64, mingw]
12 - build: stable
13 os: ubuntu-latest
15 - build: beta
16 os: ubuntu-latest
18 - build: nightly
19 os: ubuntu-latest
21 - build: macos
22 os: macos-latest
[all …]
/external/rust/crates/indexmap/
DRELEASES.md1 - 1.9.2
3 - `IndexMap` and `IndexSet` both implement `arbitrary::Arbitrary<'_>` and
6 - 1.9.1
8 - The MSRV now allows Rust 1.56.0 as well. However, currently `hashbrown`
12 - 1.9.0
14 - **MSRV**: Rust 1.56.1 or later is now required.
16 - The `hashbrown` dependency has been updated to version 0.12.
18 - `IterMut` and `ValuesMut` now implement `Debug`.
20 - The new `IndexMap::shrink_to` and `IndexSet::shrink_to` methods shrink
23 - The new `IndexMap::move_index` and `IndexSet::move_index` methods change
[all …]
/external/rust/crates/num_cpus/.github/workflows/
Dci.yml6 - master
13 ci-pass:
15 runs-on: ubuntu-latest
17 - msrv
18 - test-linux
19 - test-macos
20 - test-windows
21 - build-cross
22 - test-cgroups
24 - run: exit 0
[all …]
/external/rust/crates/tracing-subscriber/
DREADME.md1 ![Tracing — Structured, application-level diagnostics][splash]
3 [splash]: https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/splash.svg
5 # tracing-subscriber
9 [![Crates.io][crates-badge]][crates-url]
10 [![Documentation][docs-badge]][docs-url]
11 [![Documentation (master)][docs-master-badge]][docs-master-url]
12 [![MIT licensed][mit-badge]][mit-url]
13 [![Build Status][actions-badge]][actions-url]
14 [![Discord chat][discord-badge]][discord-url]
15 ![maintenance status][maint-badge]
[all …]
/external/rust/crates/tracing-attributes/
DREADME.md1 ![Tracing — Structured, application-level diagnostics][splash]
3 [splash]: https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/splash.svg
5 # tracing-attributes
7 Macro attributes for application-level tracing.
9 [![Crates.io][crates-badge]][crates-url]
10 [![Documentation][docs-badge]][docs-url]
11 [![Documentation (master)][docs-master-badge]][docs-master-url]
12 [![MIT licensed][mit-badge]][mit-url]
13 [![Build Status][actions-badge]][actions-url]
14 [![Discord chat][discord-badge]][discord-url]
[all …]
/external/rust/crates/coset/.github/workflows/
Dci.yml6 paths-ignore:
7 - README.md
10 paths-ignore:
11 - README.md
14 build:
15 runs-on: ubuntu-latest
19 - stable
20 - beta
21 - nightly-2023-04-01
23 - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
[all …]
/external/rust/crates/zip/
DREADME.md1 zip-rs
4 [![Build Status](https://img.shields.io/github/workflow/status/zip-rs/zip/CI)](https://github.com/z…
11 ----
26 * Multi-disk
29 -----
42 zip = { version = "0.6.6", default-features = false }
47 * `aes-crypto`: Enables decryption of files which were encrypted with AES. Supports AE-1 and AE-2 m…
50 * `time`: Enables features using the [time](https://github.com/rust-lang-deprecated/time) crate.
55 MSRV section in zip-rs
56 ----
[all …]
/external/rust/crates/socket2/
DREADME.md10 for sockets, this means little effort to provide cross-platform utilities. It is
28 [v0.4.x branch]: https://github.com/rust-lang/socket2/tree/v0.4.x
33 https://doc.rust-lang.org/nightly/rustc/platform-support.html. However this is
39 [issue #78]: https://github.com/rust-lang/socket2/issues/78
53 These OSs are currently build in the CI, but not tested. Not all
66 # Minimum Supported Rust Version (MSRV)
68 Socket2 uses 1.63.0 as MSRV.
74 * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
75 https://www.apache.org/licenses/LICENSE-2.0)
76 * MIT license ([LICENSE-MIT](LICENSE-MIT) or
[all …]
/external/rust/crates/mockall/
DREADME.md5 [![Build Status](https://api.cirrus-ci.com/github/asomers/mockall.svg)](https://cirrus-ci.com/githu…
31 [dev-dependencies]
42 fn foo(&self, x: u32) -> u32;
63 # Minimum Supported Rust Version (MSRV)
65 Mockall is supported on Rust 1.64.0 and higher. Mockall's MSRV will not be
73 See LICENSE-APACHE, and LICENSE-MIT for details
80 concept to Rust. The now-defunct Mock_derive was the first library to generate
/external/rust/crates/cast/
DCHANGELOG.md10 ## [v0.3.0] - 2021-09-04
14 - (breaking change) The guaranteed MSRV is now 1.31.0. ([#40])
15 - (breaking change) The `std` Cargo feature is no longer enabled by default. ([#44])
16 - 128-bit integer support is now always available by default. ([#37])
24 - fixed casting `255f32` to `u8` returning `Error::Overflow` ([#23], [#42])
25 - fixed intent of promote-and-back tests ([#39], [#43])
34 - (breaking change) The `x128` Cargo feature has been removed
35 - removed `rustc_version` and `semver` build dependencies ([#35], [#37])
36 - removed all internal use of `unsafe` code ([#41])
41 ## [v0.2.7] - 2021-07-03
[all …]
/external/rust/crates/nix/
DREADME.md3 [![Cirrus Build Status](https://api.cirrus-ci.com/github/nix-rust/nix.svg)](https://cirrus-ci.com/g…
5 [![maintenance-status](https://img.shields.io/badge/maintenance-looking--for--maintainer-orange.svg…
14 exposed by the [libc crate](https://github.com/rust-lang/libc). This is done by
21 [gethostname](https://man7.org/linux/man-pages/man2/gethostname.2.html) system
26 pub unsafe extern fn gethostname(name: *mut c_char, len: size_t) -> c_int;
29 pub fn gethostname() -> Result<OsString>;
35 platforms supported by [libc](https://github.com/rust-lang/libc), only some
39 * Tier 1 - Builds and tests for this target are run in CI. Failures of either
41 * Tier 2 - Builds for this target are run in CI. Failures during the build
44 * Tier 3 - Builds for this target are run in CI. Failures during the build
[all …]
/external/rust/crates/scopeguard/.github/workflows/
Dci.yaml4 - push
5 - pull_request
11 build:
12 runs-on: ubuntu-latest
16 - stable
17 - beta
18 - nightly
19 - 1.20.0 # MSRV
21 - uses: actions/checkout@v2
22 - name: Install Rust
[all …]
/external/rust/crates/camino/
DREADME.md1 # camino - UTF-8 paths
5 [![Documentation (latest release)](https://img.shields.io/badge/docs-latest%20version-brightgreen.s…
6 [![Documentation (main)](https://img.shields.io/badge/docs-main-purple.svg)](https://camino-rs.gith…
7 [![License](https://img.shields.io/badge/license-Apache-green.svg)](LICENSE-APACHE)
8 [![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE-MIT)
16 they are guaranteed to only contain UTF-8 encoded data. Therefore, they expose the ability to get …
19 The `std::path` types are not guaranteed to be valid UTF-8. This is the right decision for the stan…
20 since it must be as general as possible. However, on all platforms, non-Unicode paths are vanishing…
25 …as [an extension to UTF-8](https://simonsapin.github.io/wtf-8/), and converts them to UTF-16 at Wi…
27 * There are already many systems, such as Cargo, that only support UTF-8 paths. If your own tool in…
[all …]
/external/rust/crates/tracing-core/
DREADME.md1 ![Tracing — Structured, application-level diagnostics][splash]
3 [splash]: https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/splash.svg
5 # tracing-core
7 Core primitives for application-level tracing.
9 [![Crates.io][crates-badge]][crates-url]
10 [![Documentation][docs-badge]][docs-url]
11 [![Documentation (master)][docs-master-badge]][docs-master-url]
12 [![MIT licensed][mit-badge]][mit-url]
13 [![Build Status][actions-badge]][actions-url]
14 [![Discord chat][discord-badge]][discord-url]
[all …]
/external/rust/crates/tower/
DREADME.md6 [![Crates.io][crates-badge]][crates-url]
7 [![Documentation][docs-badge]][docs-url]
8 [![Documentation (master)][docs-master-badge]][docs-master-url]
9 [![MIT licensed][mit-badge]][mit-url]
10 [![Build Status][actions-badge]][actions-url]
11 [![Discord chat][discord-badge]][discord-url]
13 [crates-badge]: https://img.shields.io/crates/v/tower.svg
14 [crates-url]: https://crates.io/crates/tower
15 [docs-badge]: https://docs.rs/tower/badge.svg
16 [docs-url]: https://docs.rs/tower
[all …]

12345