Skip to content

Commit d687202

Browse files
committed
Fix SPDX license values in Cargo.toml files
Replace `MIT/Apache-2.0` with `Apache-2.0 OR MIT` Signed-off-by: Manos Pitsidianakis <[email protected]>
1 parent b0e86ff commit d687202

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

examples/ioctls/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ authors = ["Mathieu Poirier <[email protected]"]
33
description = "Test application to test the Xen ioctls interface"
44
homepage = "https://github.com/rust-vmm/xen-sys"
55
repository = "https://github.com/rust-vmm/xen-sys.git"
6-
license = "MIT/Apache-2.0"
6+
license = "Apache-2.0 OR MIT"
77
name = "ioctls"
88
readme = "README.md"
99
version = "0.1.0"

examples/xstore/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ authors = ["Mathieu Poirier <[email protected]"]
33
description = "Test application to test the Xen store interface"
44
homepage = "https://github.com/rust-vmm/xen-sys"
55
repository = "https://github.com/rust-vmm/xen-sys.git"
6-
license = "MIT/Apache-2.0"
6+
license = "Apache-2.0 OR MIT"
77
name = "xstore"
88
readme = "README.md"
99
version = "0.1.0"

oxerun/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ authors = ["Doug Goldstein <[email protected]>"]
33
description = "Compiler bits to create Rust unikernels for Xen"
44
homepage = "https://github.com/rust-vmm/xen-sys"
55
repository = "https://github.com/rust-vmm/xen-sys.git"
6-
license = "MIT/Apache-2.0"
6+
license = "Apache-2.0 OR MIT"
77
name = "oxerun"
88
readme = "README.md"
99
version = "0.1.0"

xen-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Kernel level hypercall support for Xen"
44
categories = ["external-ffi-bindings"]
55
homepage = "https://github.com/rust-vmm/xen-sys"
66
repository = "https://github.com/rust-vmm/xen-sys.git"
7-
license = "MIT/Apache-2.0"
7+
license = "Apache-2.0 OR MIT"
88
name = "xen-sys"
99
readme = "README.md"
1010
version = "0.1.0"

xen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Idomatic Rust interfaces to Xen hypercall APIs"
44
categories = ["external-ffi-bindings"]
55
homepage = "https://github.com/rust-vmm/xen-sys"
66
repository = "https://github.com/rust-vmm/xen-sys.git"
7-
license = "MIT/Apache-2.0"
7+
license = "Apache-2.0 OR MIT"
88
name = "xen"
99
readme = "README.md"
1010
version = "0.1.0"

0 commit comments

Comments
 (0)