Skip to content

Commit f703df2

Browse files
committed
Configure deny.toml; add missing licenses
Changes: * Add MIT license to test + example crates * Generally allow MIT/Apache-2.0 * Exceptionally allow BSD-3-Clause/ISC for bindgen, libloading, instant * Exceptionally allow unmaintained serde_cbor (used only in tests) * Deny dependencies which are not on crates.io
1 parent 1a0ef2a commit f703df2

File tree

11 files changed

+36
-20
lines changed

11 files changed

+36
-20
lines changed

examples/array_export/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version = "0.1.0"
44
authors = ["The godot-rust developers"]
55
publish = false
66
edition = "2018"
7+
license = "MIT"
78

89
[lib]
910
crate-type = ["cdylib"]

examples/dodge_the_creeps/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version = "0.1.0"
44
authors = ["The godot-rust developers"]
55
publish = false
66
edition = "2018"
7+
license = "MIT"
78

89
[lib]
910
crate-type = ["cdylib"]

examples/hello_world/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version = "0.1.0"
44
authors = ["The godot-rust developers"]
55
publish = false
66
edition = "2018"
7+
license = "MIT"
78

89
[lib]
910
crate-type = ["cdylib"]

examples/native_plugin/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version = "0.1.0"
44
authors = ["The godot-rust developers"]
55
publish = false
66
edition = "2018"
7+
license = "MIT"
78

89
[lib]
910
crate-type = ["cdylib"]

examples/resource/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version = "0.1.0"
44
authors = ["The godot-rust developers"]
55
publish = false
66
edition = "2018"
7+
license = "MIT"
78

89
[lib]
910
crate-type = ["cdylib"]

examples/rpc/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version = "0.1.0"
44
authors = ["The godot-rust developers"]
55
publish = false
66
edition = "2018"
7+
license = "MIT"
78

89
[lib]
910
crate-type = ["cdylib"]

examples/scene_create/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version = "0.1.0"
44
authors = ["The godot-rust developers"]
55
publish = false
66
edition = "2018"
7+
license = "MIT"
78

89
[lib]
910
crate-type = ["cdylib"]

examples/signals/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version = "0.1.0"
44
authors = ["The godot-rust developers"]
55
edition = "2018"
66
publish = false
7+
license = "MIT"
78

89
[lib]
910
crate-type = ["cdylib"]

examples/spinning_cube/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version = "0.1.0"
44
authors = ["The godot-rust developers"]
55
publish = false
66
edition = "2018"
7+
license = "MIT"
78

89
[lib]
910
crate-type = ["cdylib"]

test/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version = "0.1.0"
44
workspace = ".."
55
edition = "2018"
66
publish = false
7+
license = "MIT"
78

89
[lib]
910
crate-type = ["cdylib"]

0 commit comments

Comments
 (0)