From 603160f660bb54e256d56245c8249b92b59128e9 Mon Sep 17 00:00:00 2001 From: Mikolaj Wielgus Date: Thu, 19 Mar 2026 11:32:22 +0100 Subject: [PATCH] Relicense to MIT OR Apache-2.0 --- topola-egui/src/menu_bar.rs | 2 +- topola/Cargo.toml | 1 + topola/src/board.rs | 2 +- topola/src/layout.rs | 2 +- topola/src/lib.rs | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/topola-egui/src/menu_bar.rs b/topola-egui/src/menu_bar.rs index 6a9fce8..585e6ef 100644 --- a/topola-egui/src/menu_bar.rs +++ b/topola-egui/src/menu_bar.rs @@ -1,6 +1,6 @@ // SPDX-FileCopyrightText: 2026 Topola contributors // -// SPDX-License-Identifier: MIT +// SPDX-License-Identifier: MIT OR Apache-2.0 use std::sync::mpsc::Sender; diff --git a/topola/Cargo.toml b/topola/Cargo.toml index 690cf97..d8287c0 100644 --- a/topola/Cargo.toml +++ b/topola/Cargo.toml @@ -13,6 +13,7 @@ bimap = "0.6" dearcut = { version = "0.3", features = ["serde", "undoredo"] } derive-getters.workspace = true derive_more.workspace = true +i_triangle = "0.40" rstar = "0.12" serde.workspace = true specctra = { path = "../specctra" } diff --git a/topola/src/board.rs b/topola/src/board.rs index 536d576..b222214 100644 --- a/topola/src/board.rs +++ b/topola/src/board.rs @@ -1,6 +1,6 @@ // SPDX-FileCopyrightText: 2026 Topola contributors // -// SPDX-License-Identifier: MIT +// SPDX-License-Identifier: MIT OR Apache-2.0 use bimap::BiBTreeMap; use derive_getters::{Dissolve, Getters}; diff --git a/topola/src/layout.rs b/topola/src/layout.rs index c7943a2..03868fe 100644 --- a/topola/src/layout.rs +++ b/topola/src/layout.rs @@ -1,6 +1,6 @@ // SPDX-FileCopyrightText: 2026 Topola contributors // -// SPDX-License-Identifier: MIT +// SPDX-License-Identifier: MIT OR Apache-2.0 use std::collections::BTreeMap; diff --git a/topola/src/lib.rs b/topola/src/lib.rs index a5e7b48..0a61fc9 100644 --- a/topola/src/lib.rs +++ b/topola/src/lib.rs @@ -1,6 +1,6 @@ // SPDX-FileCopyrightText: 2026 Topola contributors // -// SPDX-License-Identifier: MIT +// SPDX-License-Identifier: MIT OR Apache-2.0 mod board; mod layout;