Skip to content

Commit c00a728

Browse files
bors[bot]stlankes
andauthored
Merge #115
115: switching to smoltcp 0.7 r=stlankes a=stlankes - using the latest rust toolchain Co-authored-by: Stefan Lankes <[email protected]>
2 parents a80de1f + 98162b3 commit c00a728

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

hermit-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ version = "0.*"
4646
default-features = false
4747

4848
[dependencies.smoltcp]
49-
version = "0.6.0"
49+
version = "0.7.0"
5050
optional = true
5151
default-features = false
5252
features = ["std", "ethernet", "socket-udp", "socket-tcp", "proto-ipv4", "proto-ipv6"]

hermit-sys/src/net/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,10 @@ pub enum WaitForResult {
8787

8888
pub struct NetworkInterface<T: for<'a> Device<'a>> {
8989
#[cfg(feature = "trace")]
90-
pub iface: smoltcp::iface::EthernetInterface<'static, 'static, 'static, EthernetTracer<T>>,
90+
pub iface: smoltcp::iface::EthernetInterface<'static, EthernetTracer<T>>,
9191
#[cfg(not(feature = "trace"))]
92-
pub iface: smoltcp::iface::EthernetInterface<'static, 'static, 'static, T>,
93-
pub sockets: SocketSet<'static, 'static, 'static>,
92+
pub iface: smoltcp::iface::EthernetInterface<'static, T>,
93+
pub sockets: SocketSet<'static>,
9494
pub wait_for: BTreeMap<Handle, WaitFor>,
9595
#[cfg(feature = "dhcpv4")]
9696
dhcp: Dhcpv4Client,

libhermit-rs

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "nightly-2021-01-22"
2+
channel = "nightly-2021-02-11"
33
components = [ "rustfmt", "rust-src", "llvm-tools-preview"]
44
targets = [ "x86_64-unknown-hermit" ]

0 commit comments

Comments
 (0)