Skip to content

Commit 47110fd

Browse files
bors[bot]taiki-e
andauthored
Merge #607
607: Update third party licenses r=taiki-e a=taiki-e See #536 for details. Co-authored-by: Taiki Endo <te316e89@gmail.com>
2 parents 6a6d2a5 + 33e4c64 commit 47110fd

File tree

6 files changed

+0
-89
lines changed

6 files changed

+0
-89
lines changed

crossbeam-channel/LICENSE-THIRD-PARTY

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,5 @@
11
===============================================================================
22

3-
Bounded MPMC queue
4-
http://www.1024cores.net/home/code-license
5-
6-
Copyright (c) 2010-2011 Dmitry Vyukov.
7-
All rights reserved.
8-
9-
Redistribution and use in source and binary forms, with or without
10-
modification, are permitted provided that the following conditions are met:
11-
12-
1. Redistributions of source code must retain the above copyright notice, this
13-
list of conditions and the following disclaimer.
14-
2. Redistributions in binary form must reproduce the above copyright notice,
15-
this list of conditions and the following disclaimer in the documentation
16-
and/or other materials provided with the distribution.
17-
18-
THIS SOFTWARE IS PROVIDED BY DMITRY VYUKOV "AS IS" AND ANY EXPRESS OR IMPLIED
19-
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
20-
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
21-
EVENT SHALL DMITRY VYUKOV OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
22-
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23-
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24-
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25-
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
26-
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
27-
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28-
29-
The views and conclusions contained in the software and documentation are those
30-
of the authors and should not be interpreted as representing official policies,
31-
either expressed or implied, of Dmitry Vyukov.
32-
33-
===============================================================================
34-
353
matching.go
364
https://creativecommons.org/licenses/by/3.0/legalcode
375

crossbeam-channel/README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,6 @@ This product includes copies and modifications of software developed by third pa
7373
[matching.go](http://www.nada.kth.se/~snilsson/concurrency/src/matching.go) by Stefan Nilsson,
7474
licensed under Creative Commons Attribution 3.0 Unported License.
7575

76-
* [src/flavors/array.rs](src/flavors/array.rs) is based on
77-
[Bounded MPMC queue](http://www.1024cores.net/home/lock-free-algorithms/queues/bounded-mpmc-queue)
78-
by Dmitry Vyukov, licensed under the Simplified BSD License and the Apache License, Version 2.0.
79-
8076
* [tests/mpsc.rs](tests/mpsc.rs) includes modifications of code from The Rust Programming Language,
8177
licensed under the MIT License and the Apache License, Version 2.0.
8278

crossbeam-channel/src/flavors/array.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@
77
//! Source:
88
//! - <http://www.1024cores.net/home/lock-free-algorithms/queues/bounded-mpmc-queue>
99
//! - <https://docs.google.com/document/d/1yIAYmbvL3JxOKOjuCyon7JhW4cSv1wy5hC0ApeGMV9s/pub>
10-
//!
11-
//! Copyright & License:
12-
//! - Copyright (c) 2010-2011 Dmitry Vyukov
13-
//! - Simplified BSD License and Apache License, Version 2.0
14-
//! - <http://www.1024cores.net/home/code-license>
1510
1611
use std::cell::UnsafeCell;
1712
use std::marker::PhantomData;

crossbeam-queue/LICENSE-THIRD-PARTY

Lines changed: 0 additions & 31 deletions
This file was deleted.

crossbeam-queue/README.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,3 @@ at your option.
4949
Unless you explicitly state otherwise, any contribution intentionally submitted
5050
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
5151
dual licensed as above, without any additional terms or conditions.
52-
53-
#### Third party software
54-
55-
This product includes copies and modifications of software developed by third parties:
56-
57-
* [src/array_queue.rs](src/array_queue.rs) is based on
58-
[Bounded MPMC queue](http://www.1024cores.net/home/lock-free-algorithms/queues/bounded-mpmc-queue)
59-
by Dmitry Vyukov, licensed under the Simplified BSD License and the Apache License, Version 2.0.
60-
61-
See the source code files for more details.
62-
63-
Copies of third party licenses can be found in [LICENSE-THIRD-PARTY](LICENSE-THIRD-PARTY).

crossbeam-queue/src/array_queue.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@
22
//!
33
//! Source:
44
//! - <http://www.1024cores.net/home/lock-free-algorithms/queues/bounded-mpmc-queue>
5-
//!
6-
//! Copyright & License:
7-
//! - Copyright (c) 2010-2011 Dmitry Vyukov
8-
//! - Simplified BSD License and Apache License, Version 2.0
9-
//! - <http://www.1024cores.net/home/code-license>
105
116
use alloc::boxed::Box;
127
use core::cell::UnsafeCell;

0 commit comments

Comments
 (0)