codeql/rust
Paolo Tranquilli c53179f742
Merge pull request #17499 from geoffw0/morestats
Rust: Add more summary stats.
2024-09-18 10:43:20 +02:00
..
codegen
extractor Merge branch 'main' into redsun82/rust-unextracted 2024-09-16 17:10:26 +02:00
integration-tests
ql Merge pull request #17499 from geoffw0/morestats 2024-09-18 10:43:20 +02:00
tools Rust: add windows tools 2024-09-17 11:22:32 +02:00
BUILD.bazel
README.md Rust: Update example path. 2024-09-10 17:09:51 +01:00
codegen.conf Rust: Move `codeql/rust/generated` files into `codeql/rust/internal/generated` 2024-09-17 08:51:24 +02:00
codeql-extractor.yml Fix definition of trap compression option 2024-09-10 17:13:49 +02:00
lint.py Rust: fix linting script 2024-09-12 08:53:08 +02:00
prefix.dbscheme Rust: integrate into standard files+location library 2024-09-12 13:17:10 +02:00
schema.py Merge branch 'main' into redsun82/rust-default-doc-signature 2024-09-17 08:29:01 +02:00

README.md

Rust on CodeQL

[!WARNING] Rust support for CodeQL is experimental. No support is offered. QL and database interfaces will change and break without notice or deprecation periods.

Development

Dependencies

If you don't have the semmle-code repo you may need to install Bazel manually, e.g. from https://github.com/bazelbuild/bazelisk.

Building the Rust Extractor

This approach uses a released codeql version and is simpler to use for QL development. From your semmle-code directory run:

bazel run @codeql//rust:rust-installer

You now need to create a per-user CodeQL configuration file and specify the option:

--search-path PATH/TO/semmle-code/ql

(wherever the codeql checkout is on your system)

You can now use the Rust extractor e.g. to run Rust tests from the command line or in VSCode.

Building the Rust Extractor (as a sembuild target)

This approach allows you to build a Rust extractor with a CLI built from source. From your semmle-code directory run:

./build target/intree/codeql-rust

You can now invoke it directly, for example to run some tests:

./target/intree/codeql-rust/codeql test run ql/rust/ql/test/PATH/TO/TEST/

Building a Database

TODO

Code Generation

TODO