-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
47 lines (40 loc) · 1.28 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "rrplug"
version = "4.1.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.77"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
thiserror = "1.0.40"
log = "0.4.19"
once_cell = "1.18.0"
rrplug_proc = { path = "./rrplug_proc" }
parking_lot = "0.12.1"
windows = { version = "0.52.0", features = ["Win32_Foundation", "Win32_System_LibraryLoader", "Win32_System_SystemServices"] }
bitflags = "2.4.1"
[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"] # hopefully docs.rs will still work
[features]
# default = ["async_engine"]
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"]