mirror of
https://github.com/safing/portmaster
synced 2025-04-25 13:29:10 +00:00
* [service] Fix check for invalid kext handle * [windows_kext] Use BTreeMap as cache structure * [windows_kext] Fix synchronization bug * Update windows_kext/kextinterface/kext_file.go Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Update windows_kext/kextinterface/kext_file.go Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Update windows_kext/kextinterface/kext_file.go Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
25 lines
1.1 KiB
TOML
25 lines
1.1 KiB
TOML
[package]
|
|
name = "driver"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
name = "driver"
|
|
path = "src/lib.rs"
|
|
crate-type = ["staticlib"]
|
|
|
|
[dependencies]
|
|
wdk = { path = "../wdk" }
|
|
protocol = { path = "../protocol" }
|
|
num = { version = "0.4", default-features = false }
|
|
num-derive = { version = "0.4", default-features = false }
|
|
num-traits = { version = "0.2", default-features = false }
|
|
smoltcp = { version = "0.10", default-features = false, features = ["proto-ipv4", "proto-ipv6"] }
|
|
|
|
# WARNING: Do not update. The version was choosen for a reason. See wdk/README.md for more detiels.
|
|
[dependencies.windows-sys]
|
|
git = "https://github.com/microsoft/windows-rs"
|
|
rev = "dffa8b03dc4987c278d82e88015ffe96aa8ac317"
|
|
features = ["Wdk_Foundation", "Wdk_Storage_FileSystem", "Wdk_System_SystemServices", "Win32_Foundation", "Win32_Security", "Win32_System_IO", "Win32_System_Kernel", "Win32_System_Power", "Win32_System_WindowsProgramming", "Win32_NetworkManagement_IpHelper", "Win32_Networking_WinSock", "Win32_NetworkManagement_WindowsFilteringPlatform"]
|