mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
19 lines
502 B
TOML
19 lines
502 B
TOML
[package]
|
|
name = "veloren-plugin-rt"
|
|
version = "0.1.0"
|
|
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
plugin-api = { package = "veloren-plugin-api", path = "../api" }
|
|
plugin-derive = { package = "veloren-plugin-derive", path = "../derive"}
|
|
serde = {version = "1.0.118", features = ["derive"]}
|
|
bincode = "1.3.1"
|
|
|
|
[[example]]
|
|
name = "hello"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dev-dependencies]
|
|
plugin-derive = { package = "veloren-plugin-derive", path = "../derive"}
|