libhotpatch 1.0.0

Shared library live code reloading and hot-patching
Documentation
[dependencies.atomic-wait]
version = "1.1"

[dependencies.libhotpatch-macros]
version = "0.1.0"

[dependencies.libloading]
version = "0.9"

[dependencies.linkme]
version = "0.3"

[dependencies.log]
features = ["std"]
version = "0.4"

[dependencies.tempfile]
version = "3.23"

[dependencies.xxhash-rust]
features = ["xxh3"]
version = "0.8"

[lib]
name = "libhotpatch"
path = "src/lib.rs"

[package]
authors = ["Dasaav"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
description = "Shared library live code reloading and hot-patching"
edition = "2024"
license = "MIT OR Apache-2.0"
name = "libhotpatch"
readme = "README.md"
repository = "https://github.com/Dasaav-dsv/libhotpatch"
resolver = "2"
rust-version = "1.91"
version = "1.0.0"

[profile.dev.package.xxhash-rust]
opt-level = 3

[target."cfg(unix)".dependencies.libc]
version = "0.2"

[target."cfg(windows)".dependencies.windows-sys]
features = ["Win32_System_LibraryLoader", "Win32_System_Memory"]
version = "0.61"

[[test]]
name = "hotpatch"
path = "tests/hotpatch.rs"

[[test]]
name = "proc_macro"
path = "tests/proc_macro.rs"