Crates.io | dllx |
lib.rs | dllx |
version | |
source | src |
created_at | 2025-02-14 17:56:54.187616+00 |
updated_at | 2025-02-14 17:56:54.187616+00 |
description | Cross platform dynamic linking libraries |
homepage | |
repository | https://github.com/OrtheSnowJames/dllx |
max_upload_size | |
id | 1555843 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
This project is licensed under the AGPL v3.0 (Affero General Public License Version 3.0). See the LICENSE file for more details.
Dllx is an effort made to unite linking libraries for all platforms. It is a zip archive with all kinds of linking libraries, like .so, .dylib and .dll. So far we have rust and go support, but we don't have any other language support. If you wish to contribute and bring one of your languages to it, you are more than welcome to contribute, but your pull request might not get approved based on what you do in it.
add it
cargo add dllx
import it
use dllx::load_and_call;
and use it
fn main() {
match load_and_call("your_file.dllx", "Foo") {
Ok(_) => println!("Successfully called function 'Foo'!"),
Err(e) => eprintln!("Error: {}", e),
}
}
first, get the repo.
go get github.com/OrtheSnowJames/dllx/go/dllx
import it
import (
// other stuff
// you don't need to import everything here it's just an example of a project imports
"archive/zip"
"encoding/json"
"fmt"
"os"
"path/filepath"
"plugin"
"runtime"
"github.com/OrtheSnowJames/dllx/go/dllx"
)
and use it
func main() {
// Path to the .dllx file (replace with your actual file path)
dllxFile := "your_file.dllx"
// Read manifest from the .dllx file
manifest, err := readManifestFromDllx(dllxFile)
if err != nil {
fmt.Printf("Error reading manifest: %v\n", err)
return
}
// Load the platform-specific library dynamically
plug, err := loadLibrary(dllxFile, manifest)
if err != nil {
fmt.Printf("Error loading library: %v\n", err)
return
}
// Assume the shared library exposes a function called 'Foo'
fooSymbol, err := plug.Lookup("Foo")
if err != nil {
fmt.Printf("Error looking up symbol 'Foo': %v\n", err)
return
}
// Call the function (assuming it takes no arguments and returns no values)
fooFunc := fooSymbol.(func())
fooFunc()
fmt.Println("Successfully called Foo from the dynamic library!")
}