diff options
| author | Mason Reed <mason@vector35.com> | 2025-02-13 13:26:44 -0500 |
|---|---|---|
| committer | Mason Reed <35282038+emesare@users.noreply.github.com> | 2025-02-13 13:59:09 -0500 |
| commit | b366ebd28bcb44492719b487f9dd34b6da56d23f (patch) | |
| tree | 1d911a5aceb38db38a09bd90bc528f859647d432 /plugins | |
| parent | 5365728462076834832090072788972585260876 (diff) | |
Add licensing check for Rust code
If we add new rust dependencies we should now be alerted when a new license type is added.
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/dwarf/dwarf_export/Cargo.toml | 1 | ||||
| -rw-r--r-- | plugins/dwarf/dwarf_import/Cargo.toml | 1 | ||||
| -rw-r--r-- | plugins/dwarf/dwarfdump/Cargo.toml | 1 | ||||
| -rw-r--r-- | plugins/dwarf/shared/Cargo.toml | 1 | ||||
| -rw-r--r-- | plugins/idb_import/Cargo.toml | 1 | ||||
| -rw-r--r-- | plugins/pdb-ng/Cargo.toml | 1 | ||||
| -rw-r--r-- | plugins/pdb-ng/demo/Cargo.toml | 1 | ||||
| -rw-r--r-- | plugins/warp/Cargo.toml | 1 |
8 files changed, 8 insertions, 0 deletions
diff --git a/plugins/dwarf/dwarf_export/Cargo.toml b/plugins/dwarf/dwarf_export/Cargo.toml index a3d0e75b..570626f6 100644 --- a/plugins/dwarf/dwarf_export/Cargo.toml +++ b/plugins/dwarf/dwarf_export/Cargo.toml @@ -2,6 +2,7 @@ name = "dwarf_export" version = "0.1.0" edition = "2021" +license = "Apache-2.0" [lib] crate-type = ["cdylib"] diff --git a/plugins/dwarf/dwarf_import/Cargo.toml b/plugins/dwarf/dwarf_import/Cargo.toml index 52f89a46..9527274a 100644 --- a/plugins/dwarf/dwarf_import/Cargo.toml +++ b/plugins/dwarf/dwarf_import/Cargo.toml @@ -2,6 +2,7 @@ name = "dwarf_import" version = "0.1.0" edition = "2021" +license = "Apache-2.0" [lib] crate-type = ["cdylib"] diff --git a/plugins/dwarf/dwarfdump/Cargo.toml b/plugins/dwarf/dwarfdump/Cargo.toml index a58e2e33..cd13206a 100644 --- a/plugins/dwarf/dwarfdump/Cargo.toml +++ b/plugins/dwarf/dwarfdump/Cargo.toml @@ -3,6 +3,7 @@ name = "dwarfdump" version = "0.1.0" authors = ["Kyle Martin <kyle@vector35.com>"] edition = "2021" +license = "Apache-2.0" [lib] crate-type = ["cdylib"] diff --git a/plugins/dwarf/shared/Cargo.toml b/plugins/dwarf/shared/Cargo.toml index 2e2ee51e..83ecee93 100644 --- a/plugins/dwarf/shared/Cargo.toml +++ b/plugins/dwarf/shared/Cargo.toml @@ -3,6 +3,7 @@ name = "dwarfreader" version = "0.1.0" authors = ["Kyle Martin <kyle@vector35.com>"] edition = "2021" +license = "Apache-2.0" [dependencies] binaryninja.workspace = true diff --git a/plugins/idb_import/Cargo.toml b/plugins/idb_import/Cargo.toml index 1871df6e..db41d40a 100644 --- a/plugins/idb_import/Cargo.toml +++ b/plugins/idb_import/Cargo.toml @@ -3,6 +3,7 @@ name = "idb_import" version = "0.1.0" authors = ["Rubens Brandao <git@rubens.io>"] edition = "2021" +license = "Apache-2.0" [lib] crate-type = ["cdylib"] diff --git a/plugins/pdb-ng/Cargo.toml b/plugins/pdb-ng/Cargo.toml index d431fd64..3a9017d5 100644 --- a/plugins/pdb-ng/Cargo.toml +++ b/plugins/pdb-ng/Cargo.toml @@ -2,6 +2,7 @@ name = "pdb-import-plugin" version = "0.1.0" edition = "2021" +license = "Apache-2.0" [lib] crate-type = ["cdylib"] diff --git a/plugins/pdb-ng/demo/Cargo.toml b/plugins/pdb-ng/demo/Cargo.toml index 02a645d0..ddde9b94 100644 --- a/plugins/pdb-ng/demo/Cargo.toml +++ b/plugins/pdb-ng/demo/Cargo.toml @@ -2,6 +2,7 @@ name = "pdb-import-plugin-static" version = "0.1.0" edition = "2021" +license = "Apache-2.0" [lib] crate-type = ["staticlib"] diff --git a/plugins/warp/Cargo.toml b/plugins/warp/Cargo.toml index e7634075..07e0a4de 100644 --- a/plugins/warp/Cargo.toml +++ b/plugins/warp/Cargo.toml @@ -2,6 +2,7 @@ name = "warp_ninja" version = "0.1.0" edition = "2021" +license = "Apache-2.0" [lib] crate-type = ["lib", "cdylib"] |
