Home
last modified time | relevance | path

Searched full:cargo (Results 1 – 25 of 1468) sorted by relevance

12345678910>>...59

/external/rust/crates/grpcio/.github/workflows/
Dci.yml25 …- run: which cargo && cargo version && clang --version && openssl version && which cmake && cmake …
26 - run: cargo xtask submodule
27 - run: cargo fmt --all -- --check
28 …- run: cargo clippy --all -- -D clippy::all && cargo clippy --all --no-default-features --features…
29 - run: cargo xtask clang-lint && git diff-index --quiet HEAD
46 - run: which cargo && cargo version && clang --version && openssl version
47 - run: cargo xtask submodule
48 - run: env TEST_BIND=0 cargo xtask bindgen && git diff --exit-code HEAD
49 - run: cargo xtask codegen && git diff --exit-code HEAD;
50 - run: cargo xtask bindgen
[all …]
/external/rust/crates/log/.github/workflows/
Dmain.yml39 - run: cargo test --verbose
40 - run: cargo test --verbose --no-default-features
41 - run: cargo test --verbose --all-features
42 - run: cargo test --verbose --features serde
43 - run: cargo test --verbose --features std
44 - run: cargo test --verbose --features kv_unstable
45 - run: cargo test --verbose --features kv_unstable_sval
46 - run: cargo test --verbose --features kv_unstable_serde
47 …- run: cargo test --verbose --features "kv_unstable kv_unstable_std kv_unstable_sval kv_unstable_s…
48 - run: cargo run --verbose --manifest-path test_max_level_features/Cargo.toml
[all …]
/external/rust/crates/serde_json/.github/workflows/
Dci.yml26 - run: cargo test
27 - run: cargo test --features preserve_order --tests -- --skip ui --exact
28 - run: cargo test --features float_roundtrip --tests -- --skip ui --exact
29 - run: cargo test --features arbitrary_precision --tests -- --skip ui --exact
30 - run: cargo test --features float_roundtrip,arbitrary_precision --tests -- --skip ui --exact
31 - run: cargo test --features raw_value --tests -- --skip ui --exact
32 - run: cargo test --features unbounded_depth --tests -- --skip ui --exact
55 - run: cargo check
56 - run: cargo check --features float_roundtrip
57 - run: cargo check --features arbitrary_precision
[all …]
/external/rust/crates/proc-macro2/.github/workflows/
Dci.yml34 - run: cargo test
35 - run: cargo test --no-default-features
36 - run: cargo test --features span-locations
37 - name: RUSTFLAGS='--cfg procmacro2_semver_exempt' cargo test
38 run: cargo test
41 - name: RUSTFLAGS='--cfg procmacro2_semver_exempt' cargo test --no-default-features
42 run: cargo test --no-default-features
57 - run: cargo test
58 - run: cargo test --no-default-features
59 …- run: cargo test --no-default-features --test features -- --ignored make_sure_no_proc_macro # run…
[all …]
/external/rust/crates/openssl/
Dbuild.rs7 println!("cargo:rustc-cfg=libressl"); in main()
11 println!("cargo:rustc-cfg=boringssl"); in main()
16 println!("cargo:rustc-cfg=libressl{}", v); in main()
21 println!("cargo:rustc-cfg=osslconf=\"{}\"", var); in main()
29 println!("cargo:rustc-cfg=ossl101"); in main()
32 println!("cargo:rustc-cfg=ossl102"); in main()
35 println!("cargo:rustc-cfg=ossl110"); in main()
38 println!("cargo:rustc-cfg=ossl110g"); in main()
41 println!("cargo:rustc-cfg=ossl110h"); in main()
44 println!("cargo:rustc-cfg=ossl111"); in main()
[all …]
/external/rust/beto-rust/nearby/scripts/
Dbuild-script.sh32 cargo deny --workspace check
51 cargo fmt --check
53 cargo check --workspace --all-targets
55 cargo test --workspace --quiet
57 cargo doc --workspace --no-deps
58 cargo clippy --all-targets
59 cargo deny --workspace check
61 cargo check --features=openssl --no-default-features
105 (cd "$fuzzed_crate" && cargo +nightly fuzz build)
120 cargo fmt --check
[all …]
/external/rust/crates/semver/.github/workflows/
Dci.yml37 - run: cargo test
38 - run: cargo check --no-default-features
39 - run: cargo check --features serde
40 - run: cargo check --no-default-features --features serde
52 - run: cargo test
64 - run: cargo clippy --tests --benches -- -Dclippy::all -Dclippy::pedantic
77 - name: Run cargo miri test (64-bit little endian)
78 run: cargo miri test --target x86_64-unknown-linux-gnu
79 - name: Run cargo miri test (64-bit big endian)
80 run: cargo miri test --target powerpc64-unknown-linux-gnu
[all …]
/external/rust/crates/regex-automata/.github/workflows/
Dci.yml15 CARGO: cargo
16 # When CARGO is set to CROSS, TARGET is set to `--target matrix.target`.
84 cargo install --git https://github.com/rust-embedded/cross
85 echo "CARGO=cross" >> $GITHUB_ENV
88 - name: Show command used for Cargo
90 echo "cargo command is: ${{ env.CARGO }}"
95 run: ${{ env.CARGO }} build --verbose ${{ env.TARGET }}
99 run: ${{ env.CARGO }} doc --verbose ${{ env.TARGET }}
106 run: ${{ env.CARGO }} build --manifest-path examples/Cargo.toml --examples
110 run: ${{ env.CARGO }} test --verbose --features transducer ${{ env.TARGET }}
[all …]
/external/rust/crates/clap/3.2.23/examples/
Dcargo-example.md1 For more on creating a custom subcommand, see [the cargo
2 book](https://doc.rust-lang.org/cargo/reference/external-tools.html#custom-subcommands).
3 The crate [`clap-cargo`](https://github.com/crate-ci/clap-cargo) can help in
4 mimicking cargo's interface.
8 $ cargo-example --help
9 cargo
12 cargo <SUBCOMMAND>
21 $ cargo-example example --help
22 cargo-example [..]
26 cargo example [OPTIONS]
[all …]
Dcargo-example-derive.md1 For more on creating a custom subcommand, see [the cargo
2 book](https://doc.rust-lang.org/cargo/reference/external-tools.html#custom-subcommands).
3 The crate [`clap-cargo`](https://github.com/crate-ci/clap-cargo) can help in
4 mimicking cargo's interface.
8 $ cargo-example-derive --help
9 cargo
12 cargo <SUBCOMMAND>
21 $ cargo-example-derive example-derive --help
22 cargo-example-derive [..]
26 cargo example-derive [OPTIONS]
[all …]
/external/rust/crates/smallvec/.github/workflows/
Dmain.yml42 - name: Cargo build
43 run: cargo build --verbose
45 - name: Cargo test
47 run: cargo test --verbose
49 - name: Cargo test w/ serde
51 run: cargo test --verbose --features serde
53 - name: Cargo check w/o default features
55 run: cargo check --verbose --no-default-features
57 - name: Cargo test w/ union
59 run: cargo test --verbose --features union
[all …]
/external/rust/crates/libc/
Dbuild.rs7 println!("cargo:rerun-if-changed=build.rs"); in main()
17 "cargo:warning=\"libc's use_std cargo feature is deprecated since libc 0.2.55; \ in main()
18 please consider using the `std` cargo feature instead\"" in main()
29 println!("cargo:rustc-cfg=freebsd10") in main()
31 Some(11) if libc_ci => println!("cargo:rustc-cfg=freebsd11"), in main()
32 Some(12) if libc_ci => println!("cargo:rustc-cfg=freebsd12"), in main()
33 Some(13) if libc_ci => println!("cargo:rustc-cfg=freebsd13"), in main()
34 Some(14) if libc_ci => println!("cargo:rustc-cfg=freebsd14"), in main()
35 Some(_) | None => println!("cargo:rustc-cfg=freebsd11"), in main()
40 println!("cargo:rustc-cfg=libc_deny_warnings"); in main()
[all …]
/external/rust/crates/clap/
DCargo.toml1 # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
3 # When uploading crates to the registry Cargo will automatically
4 # "normalize" Cargo.toml files for maximal compatibility
5 # with all versions of Cargo and also rewrite `path` dependencies
8 # If you are reading this file be aware that the original Cargo.toml
10 # See Cargo.toml.orig for the original contents.
20 "Cargo.toml",
45 cargo-args = [
107 name = "cargo-example"
108 required-features = ["cargo"]
[all …]
DCargo.toml.orig18 "Cargo.toml",
46 cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
72 unstable-doc = ["derive", "cargo", "wrap_help", "env", "unicode", "string", "unstable-replace"] # f…
85 cargo = ["dep:once_cell"] # Disable if you're not using Cargo, enables Cargo-env-var-dependent macr…
128 name = "cargo-example"
129 required-features = ["cargo"]
132 name = "cargo-example-derive"
137 required-features = ["cargo"]
145 required-features = ["cargo"]
171 required-features = ["cargo"]
[all …]
/external/rust/beto-rust/nearby/
DREADME.md19 ### Cargo subsection
21 Install [`cargo-deny`](https://github.com/EmbarkStudios/cargo-deny)
22 and [`cargo-fuzz`](https://github.com/rust-fuzz/cargo-fuzz):
25 cargo install --locked cargo-deny
26 cargo install cargo-fuzz
113 cargo build --workspace --all-targets
119 cargo test --workspace
125 cargo doc --no-deps --workspace --open
134 cargo deny --workspace check
137 Update dependencies in `Cargo.lock` to their latest in the currently specified
[all …]
/external/rust/crates/hashlink/.circleci/
Dconfig.yml18 cargo --version
20 cargo +nightly --version
24 command: cargo generate-lockfile
27 - cargo-cache-{{ arch }}-{{ checksum "Cargo.lock" }}
32 cargo fmt --all -- --check --color=auto
35 command: cargo build --all --all-targets
38 command: cargo test --all --all-features
42 cargo +nightly miri test --all-features
46 …RUSTFLAGS="-Z sanitizer=address" cargo +nightly -Z build-std test --target x86_64-unknown-linux-gn…
47 …RUSTFLAGS="-Z sanitizer=leak" cargo +nightly test -Z build-std --target x86_64-unknown-linux-gnu -…
[all …]
/external/rust/crates/base64/.circleci/
Dconfig.yml39 …-cache-v5-<< parameters.rust_img >>-<< parameters.toolchain_override >>-{{ checksum "Cargo.toml" }}
55 cargo fmt -- --check
63 cargo clippy --all-targets
67 command: cargo build --all-targets
70 command: cargo build --no-default-features
73 command: cargo build --no-default-features --features alloc
79 command: cargo build --target thumbv6m-none-eabi --no-default-features
82 command: cargo build --target thumbv6m-none-eabi --no-default-features --features alloc
85 command: cargo test --verbose
88 command: cargo doc --verbose
[all …]
/external/crosvm/tools/
Dinstall-deps68 source ${CARGO_HOME:-~/.cargo}/env
74 rustup component add cargo clippy rustfmt
82 # Cargo extension to install binary packages from github
83 …hub.com/cargo-bins/cargo-binstall/releases/download/v0.19.3/cargo-binstall-x86_64-unknown-linux-gn…
87 # This should be fixed by: https://github.com/cargo-bins/cargo-binstall/issues/776
90 cargo binstall --no-confirm --disable-strategies crate-meta-data bindgen-cli --version "0.64.0"
93 cargo binstall --no-confirm --disable-strategies crate-meta-data cargo-binutils
96 cargo binstall --no-confirm --disable-strategies crate-meta-data mdbook --version "0.4.25"
97 cargo binstall --no-confirm --disable-strategies crate-meta-data mdbook-mermaid --version "0.12.6"
98 cargo binstall --no-confirm --disable-strategies crate-meta-data mdbook-linkcheck --version "0.7.7"
[all …]
/external/rust/crates/itoa/.github/workflows/
Dci.yml28 - run: cargo build
29 - run: cargo test
30 - run: cargo test --release
31 - run: cargo build --no-default-features
32 - run: cargo test --tests --no-default-features
33 - run: cargo test --tests --no-default-features --release
34 - run: cargo build --tests --features no-panic --release
36 - run: cargo bench --no-run
46 - run: cargo miri test
58 - run: cargo clippy --tests --benches -- -Dclippy::all -Dclippy::pedantic
[all …]
/external/rust/crates/byteorder/.github/workflows/
Dci.yml15 CARGO: cargo
16 # When CARGO is set to CROSS, TARGET is set to `--target matrix.target`.
79 cargo install --git https://github.com/rust-embedded/cross
80 echo "CARGO=cross" >> $GITHUB_ENV
83 - name: Show command used for Cargo
85 echo "cargo command is: ${{ env.CARGO }}"
93 run: ${{ env.CARGO }} build --verbose $TARGET
96 run: ${{ env.CARGO }} build --verbose $TARGET --no-default-features
99 run: ${{ env.CARGO }} doc --verbose $TARGET
105 run: ${{ env.CARGO }} test --verbose $TARGET
[all …]
/external/rust/crates/gdbstub/.github/workflows/
Dci.yml17 - name: cargo clippy
18 uses: actions-rs/cargo@v1
24 - name: cargo clippy (example_no_std)
25 uses: actions-rs/cargo@v1
28 args: --manifest-path example_no_std/Cargo.toml
30 - name: cargo test
31 uses: actions-rs/cargo@v1
40 - name: cargo doc
41 run: cargo doc --workspace --features=std
56 - name: cargo +nightly fmt
[all …]
/external/rust/crates/clap/examples/
Dcargo-example.md1 For more on creating a custom subcommand, see [the cargo
2 book](https://doc.rust-lang.org/cargo/reference/external-tools.html#custom-subcommands).
3 The crate [`clap-cargo`](https://github.com/crate-ci/clap-cargo) can help in
4 mimicking cargo's interface.
8 $ cargo-example --help
9 Usage: cargo <COMMAND>
18 $ cargo-example example --help
21 Usage: cargo example [OPTIONS]
32 $ cargo-example example
35 $ cargo-example example --manifest-path Cargo.toml
[all …]
Dcargo-example-derive.md1 For more on creating a custom subcommand, see [the cargo
2 book](https://doc.rust-lang.org/cargo/reference/external-tools.html#custom-subcommands).
3 The crate [`clap-cargo`](https://github.com/crate-ci/clap-cargo) can help in
4 mimicking cargo's interface.
8 $ cargo-example-derive --help
9 Usage: cargo <COMMAND>
18 $ cargo-example-derive example-derive --help
21 Usage: cargo example-derive [OPTIONS]
32 $ cargo-example-derive example-derive
35 $ cargo-example-derive example-derive --manifest-path Cargo.toml
[all …]
/external/rust/crates/clap/3.2.23/
DCargo.toml1 # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
3 # When uploading crates to the registry Cargo will automatically
4 # "normalize" Cargo.toml files for maximal compatibility
5 # with all versions of Cargo and also rewrite `path` dependencies
8 # If you are reading this file be aware that the original Cargo.toml
10 # See Cargo.toml.orig for the original contents.
20 "Cargo.toml",
45 cargo-args = [
107 name = "cargo-example"
108 required-features = ["cargo"]
[all …]
/external/rust/crates/pin-utils/
D.travis.yml5 cache: cargo
11 - name: cargo test (minimum required version)
14 - name: cargo +stable test
17 - name: cargo test
20 - name: cargo test
23 - name: cargo clippy
27 - cargo clippy -- -Dwarnings
29 - name: cargo doc
32 - RUSTDOCFLAGS=-Dwarnings cargo doc
35 - cargo build
[all …]

12345678910>>...59