mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-13 11:38:19 +00:00
20 lines
367 B
TOML
20 lines
367 B
TOML
|
[package]
|
||
|
name = "ddnet-engine-shared"
|
||
|
version = "0.0.1"
|
||
|
edition = "2018"
|
||
|
publish = false
|
||
|
license = "Zlib"
|
||
|
|
||
|
[lib]
|
||
|
crate-type = ["rlib", "staticlib"]
|
||
|
path = "lib.rs"
|
||
|
|
||
|
[dependencies]
|
||
|
ddnet-base = { path = "../../base" }
|
||
|
ddnet-engine = { path = ".." }
|
||
|
|
||
|
cxx = "1.0"
|
||
|
|
||
|
[dev-dependencies]
|
||
|
ddnet-test = { path = "../../rust-bridge/test", features = ["link-test-libraries"] }
|