Rust: add licensing information to crates and extractor pack

This commit is contained in:
Paolo Tranquilli
2025-02-20 10:22:17 +01:00
parent 7fa41c438f
commit 1038f7c035
5 changed files with 5 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
MIT License MIT License
Copyright (c) 2006-2020 GitHub, Inc. Copyright (c) 2006-2025 GitHub, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View File

@@ -46,6 +46,7 @@ codeql_pkg_files(
"codeql-extractor.yml", "codeql-extractor.yml",
"ql/lib/rust.dbscheme", "ql/lib/rust.dbscheme",
"ql/lib/rust.dbscheme.stats", "ql/lib/rust.dbscheme.stats",
"//:LICENSE",
], ],
) )

View File

@@ -2,6 +2,7 @@
name = "ast-generator" name = "ast-generator"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
license = "MIT"
# When updating these dependencies, run `rust/update_cargo_deps.sh` # When updating these dependencies, run `rust/update_cargo_deps.sh`
[dependencies] [dependencies]

View File

@@ -2,6 +2,7 @@
name = "codeql-rust" name = "codeql-rust"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
license = "MIT"
# When updating these dependencies, run `rust/update_cargo_deps.sh` # When updating these dependencies, run `rust/update_cargo_deps.sh`
[dependencies] [dependencies]

View File

@@ -2,6 +2,7 @@
name = "rust-extractor-macros" name = "rust-extractor-macros"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
license = "MIT"
[lib] [lib]
proc-macro = true proc-macro = true