[package] name = "openfut-hook" version = "0.1.0" edition = "2021" [lib] crate-type = ["cdylib"] [dependencies] # Shared, dependency-free source of truth for the OpenFUT destination # (host + ports) and the sockaddr byte-order helpers. Keeps all three hooks # consistent and keeps this logic host-testable outside WinSock. openfut-common = { path = "../openfut-common" } windows-sys = { version = "0.59", features = [ "Win32_Foundation", "Win32_System_LibraryLoader", "Win32_System_Memory", "Win32_System_SystemServices", "Win32_Networking_WinSock", "Win32_Security_Cryptography", "Win32_System_Threading", ] } [profile.release] opt-level = "s" strip = true panic = "abort"