2020-12-09 20:47:42 +00:00
|
|
|
[package]
|
2020-12-12 13:01:54 +00:00
|
|
|
name = "veloren-plugin-rt"
|
2020-12-09 20:47:42 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-12-12 13:01:54 +00:00
|
|
|
plugin-api = { package = "veloren-plugin-api", path = "../api" }
|
|
|
|
plugin-derive = { package = "veloren-plugin-derive", path = "../derive"}
|
2020-12-11 23:37:22 +00:00
|
|
|
serde = {version = "1.0.118", features = ["derive"]}
|
|
|
|
bincode = "1.3.1"
|
2020-12-13 23:08:15 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "hello"
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
plugin-derive = { package = "veloren-plugin-derive", path = "../derive"}
|