Skip to content

Commit 7b52362

Browse files
committed
Bump version 0.7.36
1 parent 3dd92ad commit 7b52362

2 files changed

Lines changed: 1 addition & 13 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wintun-bindings"
3-
version = "0.7.35"
3+
version = "0.7.36"
44
edition = "2024"
55
authors = [
66
"ssrlive",
@@ -39,7 +39,6 @@ enable_inner_logging = []
3939

4040
[dependencies]
4141
blocking = { version = "1.6.2", optional = true }
42-
c2rust-bitfields = "0.22.1"
4342
futures = { version = "0.3.32", optional = true }
4443
libloading = "0.9.0"
4544
log = "0.4.29"

src/util.rs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -503,14 +503,3 @@ pub fn decode_utf16(string: &[u16]) -> String {
503503
let end = string.iter().position(|b| *b == 0).unwrap_or(string.len());
504504
String::from_utf16_lossy(&string[..end])
505505
}
506-
507-
#[repr(C, align(1))]
508-
#[derive(c2rust_bitfields::BitfieldStruct)]
509-
#[allow(non_snake_case)]
510-
#[allow(non_camel_case_types)]
511-
struct _NET_LUID_LH_INFO {
512-
#[bitfield(name = "Reserved", ty = "u64", bits = "0..=23")]
513-
#[bitfield(name = "NetLuidIndex", ty = "u64", bits = "24..=47")]
514-
#[bitfield(name = "IfType", ty = "u64", bits = "48..=63")]
515-
_Value: [u8; 8],
516-
}

0 commit comments

Comments
 (0)