1
0
mirror of https://git.ngram.ca/OpenJam/rc-servers synced 2026-08-23 23:08:52 +00:00

Add basic C FFI for chat plugins and corresponding plugin loader

This commit is contained in:
NG (Graham)
2026-01-13 22:15:56 -05:00
parent f001ddfaf7
commit 455b466621
7 changed files with 147 additions and 5 deletions

11
Cargo.lock generated
View File

@@ -2049,6 +2049,16 @@ dependencies = [
"syn 1.0.109",
]
[[package]]
name = "libloading"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
dependencies = [
"cfg-if",
"windows-link",
]
[[package]]
name = "libm"
version = "0.2.15"
@@ -2608,6 +2618,7 @@ dependencies = [
name = "oj_rc_plugins"
version = "1.1.0"
dependencies = [
"libloading",
"log",
]