Skip to content
This repository was archived by the owner on Mar 4, 2024. It is now read-only.

Commit cbf3455

Browse files
committed
gio: Use https for all links
Hi all This is a followup to gtk-rs/gtk#1054 Cheers, Stefan
1 parent a347395 commit cbf3455

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+47
-47
lines changed

COPYRIGHT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Zach Oakes <[email protected]>
6060
Zach Ploskey <[email protected]>
6161

6262
The Gtk-rs Project is licensed under the MIT license, see the LICENSE file
63-
or <http://opensource.org/licenses/MIT>.
63+
or <https://opensource.org/licenses/MIT>.
6464

6565
This project provides interoperability with various GNOME libraries but doesn't
6666
distribute any parts of them. Distributing compiled libraries and executables

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "gio"
33
license = "MIT"
4-
homepage = "http://gtk-rs.org/"
4+
homepage = "https://gtk-rs.org/"
55
authors = ["The Gtk-rs Project Developers"]
66
keywords = ["glib", "gio", "gtk-rs", "gnome"]
77
readme = "README.md"
8-
documentation = "http://gtk-rs.org/docs/gio/"
8+
documentation = "https://gtk-rs.org/docs/gio/"
99
version = "0.9.0"
1010
description = "Rust bindings for the Gio library"
1111
repository = "https://github.com/gtk-rs/gio"

README.md

Lines changed: 2 additions & 2 deletions

src/app_info.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
#[cfg(any(feature = "v2_60", feature = "dox"))]
66
use gio_sys;

src/cancellable.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2020, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use crate::CancellableExt;
66

src/data_input_stream.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2020, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use gio_sys;
66
use glib::object::IsA;

src/dbus.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2020, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use gio_sys;
66
use glib::translate::*;

src/dbus_connection.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2020, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use gio_sys;
66
use glib::object::IsA;

src/dbus_message.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2020, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use std::fmt;
66
use DBusMessage;

src/dbus_method_invocation.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2020, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use gio_sys;
66
use glib::error::ErrorDomain;

src/desktop_app_info.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use gio_sys;
66
use glib::object::IsA;

src/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use std::io;
66
use IOErrorEnum;

src/file.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2017, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use gio_sys;
66
use glib;

src/flags.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use ApplicationFlags;
66

src/gio_future.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use futures_channel::oneshot;
66
use futures_core::task::{Context, Poll};

src/input_stream.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2017, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use error::to_std_io_result;
66
use futures_core::task::{Context, Poll};

src/io_stream.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use futures_core::task::{Context, Poll};
66
use futures_io::{AsyncRead, AsyncWrite};

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
#![allow(deprecated)]
66
#![allow(clippy::let_and_return)]

src/list_store.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use gio_sys;
66
use glib;

src/memory_input_stream.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2017, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
#[cfg(test)]
66
mod tests {

src/memory_output_stream.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2017, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
#[cfg(test)]
66
mod tests {

src/output_stream.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2017, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use crate::prelude::*;
66
use error::to_std_io_result;

src/pollable_input_stream.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use futures_core::task::{Context, Poll};
66
use futures_io::AsyncRead;

src/pollable_output_stream.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use error::to_std_io_result;
66
use futures_channel::oneshot;

src/prelude.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
//! Traits and essential types intended for blanket imports.
66

src/read_input_stream.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use crate::prelude::*;
66
use crate::subclass::prelude::*;

src/resource.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use gio_sys;
66
use glib;

src/socket.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use gio_sys;
66
use glib;

src/socket_listener.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use gio_sys;
66
use glib;

src/subclass/application.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use gio_sys;
66
use glib_sys;

src/subclass/input_stream.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use gio_sys;
66
use glib_sys;

src/subclass/io_stream.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use gio_sys;
66
use glib_sys;

src/subclass/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
mod application;
66
mod input_stream;

src/subclass/output_stream.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use gio_sys;
66
use glib_sys;

src/subclass/seekable.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use gio_sys;
66
use glib_sys;

src/test_util.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2017, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use glib::*;
66
use std::sync::mpsc::{channel, Sender};

src/unix_fd_list.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2020, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use glib::object::IsA;
66
use glib::translate::*;

src/unix_input_stream.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use glib::object::{Cast, IsA};
66
use glib::translate::*;

src/unix_mount_entry.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2019, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use glib::translate::*;
66
use glib::GString;

src/unix_mount_point.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2019, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use glib::translate::*;
66
use std::mem;

src/unix_output_stream.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use glib::object::{Cast, IsA};
66
use glib::translate::*;

src/unix_socket_address.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use gio_sys;
66
use glib::object::{Cast, IsA};

src/write_output_stream.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use crate::prelude::*;
66
use crate::subclass::prelude::*;

tests/check_gir.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
extern crate gir_format_check;
66

tests/futures.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2020, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
// This target is build with edition 2018 for testing futures API.
66
// TODO: merge to the test module of the corresponding source files once the crate

0 commit comments

Comments
 (0)