diff options
Diffstat (limited to 'crates')
| -rw-r--r-- | crates/driver/Cargo.toml | 6 | ||||
| -rw-r--r-- | crates/driver/build.rs | 2 | ||||
| -rw-r--r-- | crates/driver/src/lib.rs | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/crates/driver/Cargo.toml b/crates/driver/Cargo.toml index d1f30d6..51b9eaf 100644 --- a/crates/driver/Cargo.toml +++ b/crates/driver/Cargo.toml @@ -4,9 +4,9 @@ version = "0.1.0" authors = ["Fuwn <[email protected]>"] edition = "2021" description = "" -homepage = "https://github.com/rawaccel/driver" -repository = "https://github.com/rawaccel/driver" -license = "GPL-3.0-only" +homepage = "https://github.com/LibreAccel/driver" +repository = "https://github.com/LibreAccel/driver" +license = "MIT" publish = false [lib] diff --git a/crates/driver/build.rs b/crates/driver/build.rs index f0f2215..a485526 100644 --- a/crates/driver/build.rs +++ b/crates/driver/build.rs @@ -1,4 +1,4 @@ // Copyright (C) 2022-2022 Fuwn -// SPDX-License-Identifier: GPL-3.0-only +// SPDX-License-Identifier: MIT fn main() { windows_kernel_build::build().unwrap() } diff --git a/crates/driver/src/lib.rs b/crates/driver/src/lib.rs index 1a51dc5..de73055 100644 --- a/crates/driver/src/lib.rs +++ b/crates/driver/src/lib.rs @@ -1,5 +1,5 @@ // Copyright (C) 2022-2022 Fuwn -// SPDX-License-Identifier: GPL-3.0-only +// SPDX-License-Identifier: MIT #![no_std] #![feature(lang_items, const_extern_fn)] |