mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
name: "rust"
|
|
display_name: "Rust"
|
|
version: 0.1.0
|
|
column_kind: "utf8"
|
|
legacy_qltest_extraction: true
|
|
build_modes:
|
|
- none
|
|
github_api_languages:
|
|
- Rust
|
|
scc_languages:
|
|
- Rust
|
|
file_types:
|
|
- name: rust
|
|
display_name: Rust files
|
|
extensions:
|
|
- .rs
|
|
options:
|
|
trap:
|
|
title: Options pertaining to TRAP.
|
|
type: object
|
|
properties:
|
|
compression:
|
|
title: Controls compression for the TRAP files written by the extractor.
|
|
description: >
|
|
This option is only intended for use in debugging the extractor. Accepted
|
|
values are 'gzip' (to write gzip-compressed TRAP) and 'none'
|
|
(currently the default, to write uncompressed TRAP).
|
|
type: string
|
|
pattern: "^(none|gzip)$"
|
|
cargo_target_dir:
|
|
title: Directory to use for cargo output files.
|
|
description: >
|
|
This value is an optional path to use as `CARGO_TARGET_DIR` for the internal
|
|
cargo commands the extractor uses. Pointing it to a persistent directory may
|
|
reduce execution time of consecutive extractor runs. By default, a new scratch
|
|
directory is used for each run.
|
|
type: string
|