Compare commits

...

1 Commits

Author SHA1 Message Date
dependabot[bot]
d89c2acfdb
chore(deps): bump libloading from 0.8.9 to 0.9.0
Bumps [libloading](https://github.com/nagisa/rust_libloading) from 0.8.9 to 0.9.0.
- [Commits](https://github.com/nagisa/rust_libloading/compare/0.8.9...0.9.0)

---
updated-dependencies:
- dependency-name: libloading
  dependency-version: 0.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-03-24 00:57:38 +00:00
2 changed files with 12 additions and 2 deletions

12
Cargo.lock generated
View File

@ -6,7 +6,7 @@ version = 4
name = "aardvark-sys"
version = "0.1.0"
dependencies = [
"libloading 0.8.9",
"libloading 0.9.0",
"thiserror 2.0.18",
]
@ -4689,6 +4689,16 @@ dependencies = [
"windows-link 0.2.1",
]
[[package]]
name = "libloading"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
dependencies = [
"cfg-if",
"windows-link 0.2.1",
]
[[package]]
name = "libm"
version = "0.2.16"

View File

@ -21,5 +21,5 @@ repository = "https://github.com/zeroclaw-labs/zeroclaw"
# 4. Replace stub method bodies with FFI calls via mod bindings
[dependencies]
libloading = "0.8"
libloading = "0.9"
thiserror = "2.0"