-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
53 lines (42 loc) · 914 Bytes
/
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
48
49
50
51
52
53
[package]
name = "sm-ext"
version = "0.3.0"
authors = ["Asher Baker <asherkin@limetech.io>"]
edition = "2018"
description = "Helpers for writing SourceMod Extensions in Rust"
repository = "https://github.com/asherkin/sm-ext-rs"
readme = "README.md"
keywords = ["sourcemod"]
categories = ["api-bindings"]
license = "GPL-3.0-or-later"
[features]
default = []
abi_thiscall = ["sm-ext-derive/abi_thiscall"]
[dependencies]
libc = "0.2.66"
c_str_macro = "1.0.2"
[dependencies.sm-ext-derive]
version = "0.3.0"
path = "sm-ext-derive"
[dev-dependencies]
futures = "0.3"
async-std = "1.4"
[workspace]
[[example]]
name = "basic"
crate-type = ["cdylib"]
[[example]]
name = "natives"
crate-type = ["cdylib"]
[[example]]
name = "forwards"
crate-type = ["cdylib"]
[[example]]
name = "handles"
crate-type = ["cdylib"]
[[example]]
name = "data"
crate-type = ["cdylib"]
[[example]]
name = "async"
crate-type = ["cdylib"]