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