diff options
| author | Fuwn <[email protected]> | 2022-01-06 13:59:09 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-01-06 13:59:09 -0800 |
| commit | 42e76700bdc2b4ae436eb955b52565f8fbec997c (patch) | |
| tree | 8f51a3ba7f71ca634134738177daeb9b384befa7 /crates | |
| parent | feat(crates): new userspace examples (diff) | |
| download | driver-42e76700bdc2b4ae436eb955b52565f8fbec997c.tar.xz driver-42e76700bdc2b4ae436eb955b52565f8fbec997c.zip | |
fix: change license for new direction
Diffstat (limited to 'crates')
| -rw-r--r-- | crates/driver/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/driver/build.rs | 2 | ||||
| -rw-r--r-- | crates/driver/src/lib.rs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/crates/driver/Cargo.toml b/crates/driver/Cargo.toml index d1f30d6..e3a278e 100644 --- a/crates/driver/Cargo.toml +++ b/crates/driver/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" description = "" homepage = "https://github.com/rawaccel/driver" repository = "https://github.com/rawaccel/driver" -license = "GPL-3.0-only" +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)] |