Skip to content

Commit

Permalink
Remove copyright comments for each file
Browse files Browse the repository at this point in the history
  • Loading branch information
AldaronLau committed Oct 14, 2024
1 parent fddd330 commit 1cfe02b
Show file tree
Hide file tree
Showing 11 changed files with 6 additions and 97 deletions.
14 changes: 2 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,11 @@
# Fon
# Copyright © 2020-2022 Jeron Aldaron Lau.
#
# Licensed under any of:
# - Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
# - MIT License (https://mit-license.org/)
# - Boost Software License, Version 1.0 (https://www.boost.org/LICENSE_1_0.txt)
# At your choosing (See accompanying files LICENSE_APACHE_2_0.txt,
# LICENSE_MIT.txt and LICENSE_BOOST_1_0.txt).

[package]
name = "fon"
version = "0.6.0"
edition = "2021"
rust-version = "1.70"
license = "Apache-2.0 OR MIT OR BSL-1.0"
license = "Apache-2.0 OR BSL-1.0 OR MIT"
documentation = "https://docs.rs/fon"
homepage = "https://github.com/ardaku/fon/blob/stable/CHANGELOG.md"
homepage = "https://github.com/ardaku/fon/releases"
repository = "https://github.com/ardaku/fon"
readme = "README.md"
description = "Rust audio types, resampling, processing and mixing library."
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ email at [[email protected]][13].
[0]: https://docs.rs/fon
[1]: https://crates.io/crates/fon
[2]: https://github.com/ardaku/fon/actions?query=workflow%3Atests
[3]: https://github.com/ardaku/fon/blob/stable/CHANGELOG.md
[3]: https://github.com/ardaku/fon/blob/v1/CHANGELOG.md
[4]: https://github.com/ardaku/fon/
[5]: https://docs.rs/fon#getting-started
[6]: https://aldaronlau.com/
[7]: https://github.com/ardaku/fon/blob/stable/LICENSE_APACHE_2_0.txt
[7]: https://github.com/ardaku/fon/blob/v1/LICENSE_APACHE_2_0.txt
[8]: https://www.apache.org/licenses/LICENSE-2.0
[9]: https://github.com/ardaku/fon/blob/stable/LICENSE_MIT.txt
[9]: https://github.com/ardaku/fon/blob/v1/LICENSE_MIT.txt
[10]: https://mit-license.org/
[11]: https://github.com/ardaku/fon/blob/stable/LICENSE_BOOST_1_0.txt
[11]: https://github.com/ardaku/fon/blob/v1/LICENSE_BOOST_1_0.txt
[12]: https://www.boost.org/LICENSE_1_0.txt
[13]: mailto:[email protected]
[14]: https://crates.io/crates/twang
Expand Down
9 changes: 0 additions & 9 deletions src/audio.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,3 @@
// Copyright © 2020-2022 The Fon Contributors.
//
// Licensed under any of:
// - Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
// - MIT License (https://mit-license.org/)
// - Boost Software License, Version 1.0 (https://www.boost.org/LICENSE_1_0.txt)
// At your choosing (See accompanying files LICENSE_APACHE_2_0.txt,
// LICENSE_MIT.txt and LICENSE_BOOST_1_0.txt).

use alloc::{
boxed::Box,
slice::{Iter, IterMut},
Expand Down
9 changes: 0 additions & 9 deletions src/chan.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,3 @@
// Copyright © 2020-2022 The Fon Contributors.
//
// Licensed under any of:
// - Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
// - MIT License (https://mit-license.org/)
// - Boost Software License, Version 1.0 (https://www.boost.org/LICENSE_1_0.txt)
// At your choosing (See accompanying files LICENSE_APACHE_2_0.txt,
// LICENSE_MIT.txt and LICENSE_BOOST_1_0.txt).

//! Audio channels (left, right, etc.). Each channel contains a single sample.
//!
//! An audio [`Frame`](crate::frame::Frame) is used to group multiple channels.
Expand Down
9 changes: 0 additions & 9 deletions src/frame.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,3 @@
// Copyright © 2020-2022 The Fon Contributors.
//
// Licensed under any of:
// - Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
// - MIT License (https://mit-license.org/)
// - Boost Software License, Version 1.0 (https://www.boost.org/LICENSE_1_0.txt)
// At your choosing (See accompanying files LICENSE_APACHE_2_0.txt,
// LICENSE_MIT.txt and LICENSE_BOOST_1_0.txt).

//! Frame (interleaved sample) types

use core::{
Expand Down
9 changes: 0 additions & 9 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,3 @@
// Copyright © 2020-2022 The Fon Contributors.
//
// Licensed under any of:
// - Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
// - MIT License (https://mit-license.org/)
// - Boost Software License, Version 1.0 (https://www.boost.org/LICENSE_1_0.txt)
// At your choosing (See accompanying files LICENSE_APACHE_2_0.txt,
// LICENSE_MIT.txt and LICENSE_BOOST_1_0.txt).

//! Rust audio types and conversions.
//!
//! An [audio buffer] can be cheaply converted to and from raw samples (i16, u8,
Expand Down
9 changes: 0 additions & 9 deletions src/math.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,3 @@
// Copyright © 2020-2022 The Fon Contributors.
//
// Licensed under any of:
// - Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
// - MIT License (https://mit-license.org/)
// - Boost Software License, Version 1.0 (https://www.boost.org/LICENSE_1_0.txt)
// At your choosing (See accompanying files LICENSE_APACHE_2_0.txt,
// LICENSE_MIT.txt and LICENSE_BOOST_1_0.txt).

use core::ops::Rem;

/// Floating point methods currently only available on std, that may be
Expand Down
9 changes: 0 additions & 9 deletions src/pos.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,3 @@
// Copyright © 2020-2022 The Fon Contributors.
//
// Licensed under any of:
// - Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
// - MIT License (https://mit-license.org/)
// - Boost Software License, Version 1.0 (https://www.boost.org/LICENSE_1_0.txt)
// At your choosing (See accompanying files LICENSE_APACHE_2_0.txt,
// LICENSE_MIT.txt and LICENSE_BOOST_1_0.txt).

//! Speaker/channel positions within a speaker configuration.

use core::ops::{Index, IndexMut};
Expand Down
9 changes: 0 additions & 9 deletions src/private.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,3 @@
// Copyright © 2020-2022 The Fon Contributors.
//
// Licensed under any of:
// - Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
// - MIT License (https://mit-license.org/)
// - Boost Software License, Version 1.0 (https://www.boost.org/LICENSE_1_0.txt)
// At your choosing (See accompanying files LICENSE_APACHE_2_0.txt,
// LICENSE_MIT.txt and LICENSE_BOOST_1_0.txt).

use crate::chan::{Ch16, Ch24, Ch32, Ch64};

pub trait Sealed {}
Expand Down
9 changes: 0 additions & 9 deletions src/sink.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,3 @@
// Copyright © 2020-2022 The Fon Contributors.
//
// Licensed under any of:
// - Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
// - MIT License (https://mit-license.org/)
// - Boost Software License, Version 1.0 (https://www.boost.org/LICENSE_1_0.txt)
// At your choosing (See accompanying files LICENSE_APACHE_2_0.txt,
// LICENSE_MIT.txt and LICENSE_BOOST_1_0.txt).

use core::{fmt::Debug, num::NonZeroU32};

use crate::{chan::Channel, Frame};
Expand Down
9 changes: 0 additions & 9 deletions src/stream.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,3 @@
// Copyright © 2020-2022 The Fon Contributors.
//
// Licensed under any of:
// - Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
// - MIT License (https://mit-license.org/)
// - Boost Software License, Version 1.0 (https://www.boost.org/LICENSE_1_0.txt)
// At your choosing (See accompanying files LICENSE_APACHE_2_0.txt,
// LICENSE_MIT.txt and LICENSE_BOOST_1_0.txt).

use alloc::vec::Vec;
use core::{mem, num::NonZeroU32};

Expand Down

0 comments on commit 1cfe02b

Please sign in to comment.