Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: relicense to Apache-2 #519

Merged
merged 2 commits into from
Feb 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "drawbridge"
version = "0.4.1"
authors = ["Profian Inc"]
edition = "2021"
license = "AGPL-3.0-or-later"
license = "Apache-2.0"
homepage = "https://github.com/profianinc/drawbridge"
repository = "https://github.com/profianinc/drawbridge"
description = "Drawbridge library."
Expand Down
862 changes: 201 additions & 661 deletions LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion crates/byte/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "drawbridge-byte"
version = "0.4.0"
authors = ["Profian Inc"]
edition = "2021"
license = "AGPL-3.0-or-later"
license = "Apache-2.0"
homepage = "https://github.com/profianinc/drawbridge"
repository = "https://github.com/profianinc/drawbridge"
description = "Utilities for working with contiguous arrays of bytes and easy conversions to and from Base64 representations in string contexts."
Expand Down
862 changes: 201 additions & 661 deletions crates/byte/LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion crates/byte/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-FileCopyrightText: 2022 Profian Inc. <[email protected]>
// SPDX-License-Identifier: AGPL-3.0-only
// SPDX-License-Identifier: Apache-2.0

//! This crate provides a [`Bytes`] type which wraps most types that represent
//! a contiguous array of bytes. It provides implementations for easy
Expand Down
2 changes: 1 addition & 1 deletion crates/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "drawbridge-client"
version = "0.4.1"
authors = ["Profian Inc"]
edition = "2021"
license = "AGPL-3.0-or-later"
license = "Apache-2.0"
homepage = "https://github.com/profianinc/drawbridge"
repository = "https://github.com/profianinc/drawbridge"
description = "Client library for interacting with the Drawbridge."
Expand Down
862 changes: 201 additions & 661 deletions crates/client/LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion crates/client/src/entity.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-FileCopyrightText: 2022 Profian Inc. <[email protected]>
// SPDX-License-Identifier: AGPL-3.0-only
// SPDX-License-Identifier: Apache-2.0

use super::{scope, Client, Result, Scope};

Expand Down
2 changes: 1 addition & 1 deletion crates/client/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-FileCopyrightText: 2022 Profian Inc. <[email protected]>
// SPDX-License-Identifier: AGPL-3.0-only
// SPDX-License-Identifier: Apache-2.0

#![forbid(unsafe_code)]
#![deny(
Expand Down
2 changes: 1 addition & 1 deletion crates/client/src/repo.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-FileCopyrightText: 2022 Profian Inc. <[email protected]>
// SPDX-License-Identifier: AGPL-3.0-only
// SPDX-License-Identifier: Apache-2.0

use super::{scope, Entity, Result, Scope, Tag};

Expand Down
2 changes: 1 addition & 1 deletion crates/client/src/tag.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-FileCopyrightText: 2022 Profian Inc. <[email protected]>
// SPDX-License-Identifier: AGPL-3.0-only
// SPDX-License-Identifier: Apache-2.0

use super::{scope, Entity, Node, Result, Scope};

Expand Down
2 changes: 1 addition & 1 deletion crates/client/src/tree.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-FileCopyrightText: 2022 Profian Inc. <[email protected]>
// SPDX-License-Identifier: AGPL-3.0-only
// SPDX-License-Identifier: Apache-2.0

use super::{scope, Entity, Result, Scope};

Expand Down
2 changes: 1 addition & 1 deletion crates/client/src/user.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-FileCopyrightText: 2022 Profian Inc. <[email protected]>
// SPDX-License-Identifier: AGPL-3.0-only
// SPDX-License-Identifier: Apache-2.0

use super::{scope, Entity, Repository, Result, Scope};

Expand Down
2 changes: 1 addition & 1 deletion crates/jose/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "drawbridge-jose"
version = "0.4.0"
authors = ["Profian Inc"]
edition = "2021"
license = "AGPL-3.0-or-later"
license = "Apache-2.0"
homepage = "https://github.com/profianinc/drawbridge"
repository = "https://github.com/profianinc/drawbridge"
description = "JOSE implementation"
Expand Down
862 changes: 201 additions & 661 deletions crates/jose/LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion crates/jose/src/b64.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-FileCopyrightText: 2022 Profian Inc. <[email protected]>
// SPDX-License-Identifier: AGPL-3.0-only
// SPDX-License-Identifier: Apache-2.0

use std::ops::{Deref, DerefMut};

Expand Down
2 changes: 1 addition & 1 deletion crates/jose/src/jwk.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-FileCopyrightText: 2022 Profian Inc. <[email protected]>
// SPDX-License-Identifier: AGPL-3.0-only
// SPDX-License-Identifier: Apache-2.0

use crate::{b64::Bytes, MediaTyped, Thumbprint};

Expand Down
2 changes: 1 addition & 1 deletion crates/jose/src/jws.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-FileCopyrightText: 2022 Profian Inc. <[email protected]>
// SPDX-License-Identifier: AGPL-3.0-only
// SPDX-License-Identifier: Apache-2.0

use crate::b64::{Bytes, Json};
use crate::{MediaTyped, Thumbprint};
Expand Down
2 changes: 1 addition & 1 deletion crates/jose/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-FileCopyrightText: 2022 Profian Inc. <[email protected]>
// SPDX-License-Identifier: AGPL-3.0-only
// SPDX-License-Identifier: Apache-2.0

#![forbid(unsafe_code, clippy::expect_used, clippy::panic)]
#![deny(
Expand Down
2 changes: 1 addition & 1 deletion crates/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "drawbridge-server"
version = "0.4.0"
authors = ["Profian Inc"]
edition = "2021"
license = "AGPL-3.0-or-later"
license = "Apache-2.0"
homepage = "https://github.com/profianinc/drawbridge"
repository = "https://github.com/profianinc/drawbridge"
description = "Drawbridge server application."
Expand Down
Loading
Loading