• Home
  • Raw
  • Download

Lines Matching +full:formatting +full:- +full:check

13 … made **public** to separate the tests from the implementation, although non-documented members is…
24 - Clippy
25 - Rustfmt
26 - Miri
27 - Valgrind
28 - Tarpaulin
29 - Fuzz
30 - Count
39 cargo +nightly install cargo-valgrind
40 cargo +nightly install cargo-tarpaulin
41 cargo +nightly install cargo-fuzz
42 cargo +nightly install cargo-count
45 In addition, the following non-Rust dependencies must be installed:
47 - Python3.6+
48 - python-magic (python-magic-win64 on Windows)
49 - Valgrind
53 … scripts for testing, fuzzing, analyzing, and formatting code. Since many development features are…
55 - [check.sh](https://github.com/Alexhuszagh/minimal_lexical/blob/main/scripts/check.sh): Check rust…
56 - [fmt.sh](https://github.com/Alexhuszagh/minimal_lexical/blob/main/scripts/fmt.sh): Run `cargo fmt…
57 - [hooks.sh](https://github.com/Alexhuszagh/minimal_lexical/blob/main/scripts/hooks.sh): Install fo…
62 # Check all safety sections and other features are properly documented.
63 RUSTFLAGS="--deny warnings" cargo +nightly build --features=lint
65 scripts/check.sh
72 - All code with local unsafety must be marked as an `unsafe` function.
73 - All unsafe macros must have a `# Safety` section in the documentation.
74 - All unsafe functions must have a `# Safety` section in the documentation.
75 - All code using `unsafe` functionality must have a `// SAFETY:` section on the previous line, and …
76 - If multiple lines have similar safety guarantees, a `// SAFETY:` section can be used for a block …
82 RUSTFLAGS="--deny warnings" cargo +nightly build --features=lint
84 cargo +nightly clippy --all-features -- --deny warnings