[package]
name = "rrplug"
version = "4.3.0"
authors = ["catornot"]
description = "framework for R2Northstar plugins"
repository = "https://github.com/R2NorthstarTools/rrplug"
license = "Apache-2.0 OR MIT"
keywords = ["plugin", "northstar", "framework", "titanfall2", "r2northstar"]
exclude = [".gitignore"]
edition = "2021"
rust-version = "1.88"
[dependencies]
thiserror = "1.*"
log = "0.4.*"
once_cell = "1.*"
rrplug_proc = "4.3.0"
parking_lot = "0.12.*"
windows = { version = "0.52.*", features = ["Win32_Foundation", "Win32_System_LibraryLoader", "Win32_System_SystemServices"] }
bitflags = "2.*"
[package.metadata.docs.rs]
features = [ "async_engine" ]
default-target = "x86_64-pc-windows-msvc"
targets = ["x86_64-pc-windows-msvc", "x86_64-pc-windows-gnu"]
[features]
async_engine = []
[[example]]
crate-type = ["cdylib"]
name = "squirrel_example"
path = "examples/squirrel_example.rs"
[[example]]
crate-type = ["cdylib"]
name = "cvar_example"
path = "examples/cvar_example.rs"
[[example]]
crate-type = ["cdylib"]
name = "async_engine"
path = "examples/async_engine.rs"
required-features = ["async_engine"]