mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
12 lines
190 B
Plaintext
12 lines
190 B
Plaintext
/**
|
|
* @id crate-graph
|
|
* @name Crate Graph
|
|
* @kind graph
|
|
*/
|
|
|
|
import rust
|
|
|
|
query predicate nodes(Crate c) { any() }
|
|
|
|
query predicate edges(Crate c1, Crate c2) { c1.getADependency() = c2 }
|