20 lines
576 B
TOML
20 lines
576 B
TOML
[package]
|
|
name = "gmod"
|
|
version = "0.1.0"
|
|
authors = ["William Venner <william@venner.io>"]
|
|
edition = "2018"
|
|
license = "MIT"
|
|
description = "A swiss army knife for creating binary modules for Garry's Mod in Rust"
|
|
repository = "https://github.com/WilliamVenner/gmod-rs"
|
|
keywords = ["gmod", "garrysmod", "module", "glua"]
|
|
categories = ["api-bindings", "external-ffi-bindings", "game-development", "development-tools"]
|
|
|
|
[dependencies]
|
|
libloading = "0"
|
|
detour = "0"
|
|
skidscan = "0"
|
|
cstr = "0"
|
|
lazy_static = "1"
|
|
ctor = "0"
|
|
gmod-macros = { version = "0.1.0", path = "../gmod-macros" }
|