From c7981b50640ba218c6a68fe5888d159d09cc1f2a Mon Sep 17 00:00:00 2001 From: mars Date: Mon, 5 Dec 2022 20:09:03 -0700 Subject: [PATCH] Add Apache 2.0 license to canary-textwrap --- crates/textwrap/Cargo.toml | 1 + crates/textwrap/src/lib.rs | 3 +++ 2 files changed, 4 insertions(+) diff --git a/crates/textwrap/Cargo.toml b/crates/textwrap/Cargo.toml index 73212a9..1462ef6 100644 --- a/crates/textwrap/Cargo.toml +++ b/crates/textwrap/Cargo.toml @@ -2,6 +2,7 @@ name = "canary-textwrap" version = "0.1.0" edition = "2021" +license = "Apache-2.0" [dependencies] canary-script = { path = "../script" } diff --git a/crates/textwrap/src/lib.rs b/crates/textwrap/src/lib.rs index 02ebd0b..28ab6fe 100644 --- a/crates/textwrap/src/lib.rs +++ b/crates/textwrap/src/lib.rs @@ -1,3 +1,6 @@ +// Copyright (c) 2022 Marceline Cramer +// SPDX-License-Identifier: Apache-2.0 + use std::collections::HashMap; use canary_script::api::{DrawContext, Font, TextLayout};