Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: FIXME
Upstream-Contact: FIXME
Source: FIXME
Disclaimer: Autogenerated by licensecheck

Files: CHANGELOG.md
 CODE_OF_CONDUCT.md
 Cargo.toml
 README.md
 benches/mutex.rs
 benches/task.rs
 benches/task_local.rs
 ci/install-mdbook.sh
 debian/TODO
 debian/control
 debian/copyright-check
 debian/gbp.conf
 debian/patches/1001_async-channel.patch
 debian/patches/2001_no_wasm.patch
 debian/patches/2002_no_feature_surf.patch
 debian/patches/2003_no_feature_tokio0N.patch
 debian/patches/series
 debian/rules
 debian/source/format
 debian/source/lintian-overrides
 debian/tests/control
 debian/watch
 docs/book.toml
 docs/src/SUMMARY.md
 docs/src/concepts.md
 docs/src/concepts/async-read-write.md
 docs/src/concepts/futures.md
 docs/src/concepts/streams.md
 docs/src/concepts/tasks.md
 docs/src/glossary.md
 docs/src/images/async_1.svg
 docs/src/images/async_2.svg
 docs/src/images/horizontal_color.svg
 docs/src/images/icon_color.svg
 docs/src/images/vertical_color.svg
 docs/src/introduction.md
 docs/src/overview/async-std.md
 docs/src/overview/stability-guarantees.md
 docs/src/patterns.md
 docs/src/patterns/accept-loop.md
 docs/src/patterns/accepting-concurrent-requests.md
 docs/src/patterns/async-read-write.md
 docs/src/patterns/background-tasks.md
 docs/src/patterns/fork-join.md
 docs/src/patterns/proper-shutdown.md
 docs/src/patterns/small-patterns.md
 docs/src/patterns/testing.md
 docs/src/security/index.md
 docs/src/security/policy.md
 docs/src/tutorial/accept_loop.md
 docs/src/tutorial/all_together.md
 docs/src/tutorial/clean_shutdown.md
 docs/src/tutorial/connecting_readers_and_writers.md
 docs/src/tutorial/handling_disconnection.md
 docs/src/tutorial/implementing_a_client.md
 docs/src/tutorial/index.md
 docs/src/tutorial/receiving_messages.md
 docs/src/tutorial/sending_messages.md
 docs/src/tutorial/specification.md
 examples/README.md
 examples/a-chat/client.rs
 examples/a-chat/main.rs
 examples/a-chat/server.rs
 examples/hello-world.rs
 examples/line-count.rs
 examples/list-dir.rs
 examples/logging.rs
 examples/print-file.rs
 examples/socket-timeouts.rs
 examples/stdin-echo.rs
 examples/stdin-timeout.rs
 examples/surf-web.rs
 examples/task-local.rs
 examples/task-name.rs
 examples/tcp-client.rs
 examples/tcp-echo.rs
 examples/tcp-ipv4-and-6-echo.rs
 examples/udp-client.rs
 examples/udp-echo.rs
 src/channel.rs
 src/collections/binary_heap/extend.rs
 src/collections/binary_heap/from_stream.rs
 src/collections/binary_heap/mod.rs
 src/collections/btree_map/extend.rs
 src/collections/btree_map/from_stream.rs
 src/collections/btree_map/mod.rs
 src/collections/btree_set/extend.rs
 src/collections/btree_set/from_stream.rs
 src/collections/btree_set/mod.rs
 src/collections/hash_map/extend.rs
 src/collections/hash_map/from_stream.rs
 src/collections/hash_map/mod.rs
 src/collections/hash_set/extend.rs
 src/collections/hash_set/from_stream.rs
 src/collections/hash_set/mod.rs
 src/collections/linked_list/extend.rs
 src/collections/linked_list/from_stream.rs
 src/collections/linked_list/mod.rs
 src/collections/mod.rs
 src/collections/vec_deque/extend.rs
 src/collections/vec_deque/from_stream.rs
 src/collections/vec_deque/mod.rs
 src/fs/canonicalize.rs
 src/fs/copy.rs
 src/fs/create_dir.rs
 src/fs/create_dir_all.rs
 src/fs/dir_builder.rs
 src/fs/dir_entry.rs
 src/fs/file.rs
 src/fs/file_type.rs
 src/fs/hard_link.rs
 src/fs/metadata.rs
 src/fs/mod.rs
 src/fs/open_options.rs
 src/fs/permissions.rs
 src/fs/read.rs
 src/fs/read_dir.rs
 src/fs/read_link.rs
 src/fs/read_to_string.rs
 src/fs/remove_dir.rs
 src/fs/remove_dir_all.rs
 src/fs/remove_file.rs
 src/fs/rename.rs
 src/fs/set_permissions.rs
 src/fs/symlink_metadata.rs
 src/fs/write.rs
 src/future/future/delay.rs
 src/future/future/flatten.rs
 src/future/future/join.rs
 src/future/future/mod.rs
 src/future/future/race.rs
 src/future/future/try_join.rs
 src/future/future/try_race.rs
 src/future/into_future.rs
 src/future/maybe_done.rs
 src/future/mod.rs
 src/future/pending.rs
 src/future/poll_fn.rs
 src/future/ready.rs
 src/future/timeout.rs
 src/io/buf_read/lines.rs
 src/io/buf_read/mod.rs
 src/io/buf_read/read_line.rs
 src/io/buf_read/read_until.rs
 src/io/buf_read/split.rs
 src/io/buf_reader.rs
 src/io/buf_writer.rs
 src/io/copy.rs
 src/io/cursor.rs
 src/io/empty.rs
 src/io/mod.rs
 src/io/prelude.rs
 src/io/read/bytes.rs
 src/io/read/chain.rs
 src/io/read/mod.rs
 src/io/read/read.rs
 src/io/read/read_exact.rs
 src/io/read/read_to_end.rs
 src/io/read/read_to_string.rs
 src/io/read/read_vectored.rs
 src/io/read/take.rs
 src/io/repeat.rs
 src/io/seek/mod.rs
 src/io/seek/seek.rs
 src/io/sink.rs
 src/io/stderr.rs
 src/io/stdin.rs
 src/io/stdio.rs
 src/io/stdout.rs
 src/io/timeout.rs
 src/io/utils.rs
 src/io/write/flush.rs
 src/io/write/mod.rs
 src/io/write/write.rs
 src/io/write/write_all.rs
 src/io/write/write_fmt.rs
 src/io/write/write_vectored.rs
 src/lib.rs
 src/macros.rs
 src/net/addr.rs
 src/net/mod.rs
 src/net/tcp/listener.rs
 src/net/tcp/mod.rs
 src/net/tcp/stream.rs
 src/net/udp/mod.rs
 src/option/from_stream.rs
 src/option/mod.rs
 src/option/product.rs
 src/option/sum.rs
 src/os/mod.rs
 src/os/unix/fs.rs
 src/os/unix/io.rs
 src/os/unix/mod.rs
 src/os/unix/net/datagram.rs
 src/os/unix/net/listener.rs
 src/os/unix/net/mod.rs
 src/os/unix/net/stream.rs
 src/os/windows/fs.rs
 src/os/windows/io.rs
 src/os/windows/mod.rs
 src/path/ancestors.rs
 src/path/components.rs
 src/path/iter.rs
 src/path/mod.rs
 src/path/path.rs
 src/path/pathbuf.rs
 src/pin/mod.rs
 src/prelude.rs
 src/process.rs
 src/result/from_stream.rs
 src/result/mod.rs
 src/result/product.rs
 src/result/sum.rs
 src/rt/mod.rs
 src/stream/double_ended_stream/mod.rs
 src/stream/double_ended_stream/next_back.rs
 src/stream/double_ended_stream/nth_back.rs
 src/stream/double_ended_stream/rfind.rs
 src/stream/double_ended_stream/rfold.rs
 src/stream/double_ended_stream/try_rfold.rs
 src/stream/empty.rs
 src/stream/exact_size_stream.rs
 src/stream/extend.rs
 src/stream/from_fn.rs
 src/stream/from_iter.rs
 src/stream/from_stream.rs
 src/stream/fused_stream.rs
 src/stream/interval.rs
 src/stream/into_stream.rs
 src/stream/mod.rs
 src/stream/once.rs
 src/stream/pending.rs
 src/stream/product.rs
 src/stream/repeat.rs
 src/stream/repeat_with.rs
 src/stream/stream/all.rs
 src/stream/stream/any.rs
 src/stream/stream/chain.rs
 src/stream/stream/cloned.rs
 src/stream/stream/cmp.rs
 src/stream/stream/copied.rs
 src/stream/stream/count.rs
 src/stream/stream/cycle.rs
 src/stream/stream/delay.rs
 src/stream/stream/enumerate.rs
 src/stream/stream/eq.rs
 src/stream/stream/filter.rs
 src/stream/stream/filter_map.rs
 src/stream/stream/find.rs
 src/stream/stream/find_map.rs
 src/stream/stream/flat_map.rs
 src/stream/stream/flatten.rs
 src/stream/stream/fold.rs
 src/stream/stream/for_each.rs
 src/stream/stream/fuse.rs
 src/stream/stream/ge.rs
 src/stream/stream/gt.rs
 src/stream/stream/inspect.rs
 src/stream/stream/last.rs
 src/stream/stream/le.rs
 src/stream/stream/lt.rs
 src/stream/stream/map.rs
 src/stream/stream/max.rs
 src/stream/stream/max_by.rs
 src/stream/stream/max_by_key.rs
 src/stream/stream/merge.rs
 src/stream/stream/min.rs
 src/stream/stream/min_by.rs
 src/stream/stream/min_by_key.rs
 src/stream/stream/mod.rs
 src/stream/stream/ne.rs
 src/stream/stream/next.rs
 src/stream/stream/nth.rs
 src/stream/stream/partial_cmp.rs
 src/stream/stream/partition.rs
 src/stream/stream/position.rs
 src/stream/stream/scan.rs
 src/stream/stream/skip.rs
 src/stream/stream/skip_while.rs
 src/stream/stream/step_by.rs
 src/stream/stream/take.rs
 src/stream/stream/take_while.rs
 src/stream/stream/throttle.rs
 src/stream/stream/timeout.rs
 src/stream/stream/try_fold.rs
 src/stream/stream/try_for_each.rs
 src/stream/stream/unzip.rs
 src/stream/stream/zip.rs
 src/stream/successors.rs
 src/stream/sum.rs
 src/string/extend.rs
 src/string/from_stream.rs
 src/string/mod.rs
 src/sync/condvar.rs
 src/sync/mod.rs
 src/sync/waker_set.rs
 src/task/block_on.rs
 src/task/builder.rs
 src/task/current.rs
 src/task/join_handle.rs
 src/task/mod.rs
 src/task/ready.rs
 src/task/sleep.rs
 src/task/spawn.rs
 src/task/spawn_blocking.rs
 src/task/spawn_local.rs
 src/task/task.rs
 src/task/task_id.rs
 src/task/task_local.rs
 src/task/task_locals_wrapper.rs
 src/task/yield_now.rs
 src/unit/extend.rs
 src/unit/from_stream.rs
 src/unit/mod.rs
 src/utils.rs
 src/vec/extend.rs
 src/vec/from_stream.rs
 src/vec/mod.rs
 tests/addr.rs
 tests/block_on.rs
 tests/buf_writer.rs
 tests/channel.rs
 tests/collect.rs
 tests/condvar.rs
 tests/io_copy.rs
 tests/io_timeout.rs
 tests/mutex.rs
 tests/rwlock.rs
 tests/stream.rs
 tests/task_local.rs
 tests/tcp.rs
 tests/timeout.rs
 tests/udp.rs
 tests/uds.rs
 tests/verbose_errors.rs
Copyright: NONE
License: UNKNOWN
 FIXME

Files: LICENSE-APACHE
Copyright: NONE
License: Apache-2.0
 FIXME

Files: LICENSE-MIT
Copyright: NONE
License: Expat
 FIXME

