rust/lib-hedgewars-engine/Cargo.toml
author nemo
Wed, 27 Mar 2019 09:52:08 -0400
changeset 14745 fbd385a1bcf4
parent 14743 c97faf0aef78
child 14747 75ff5c643004
permissions -rw-r--r--
Backed out changeset f9f71cccb5c3 - Wuzzy is right, the license is incompatible. I'd misread the wording on https://fontlibrary.org/en/font/symbola The terms on the author's site prevent using it with almost all FOSS projects, and even prevent using it in a merge like this. We'll just have to find some other font to improve coverage.

[package]
name = "lib-hedgewars-engine"
version = "0.1.0"
authors = ["Andrey Korotaev <a.korotaev@hedgewars.org>"]
edition = "2018"

[dependencies]
gl = "0.11"
netbuf = "0.4"

fpnum = { path = "../fpnum" }
land2d = { path = "../land2d" }
lfprng = { path = "../lfprng" }
integral-geometry = { path = "../integral-geometry" }
landgen = { path = "../landgen" }
hedgewars-engine-messages = { path = "../hedgewars-engine-messages" }
hwphysics = { path = "../hwphysics" }
mapgen = { path = "../mapgen" }
vec2d = { path = "../vec2d" }

[dev-dependencies]
proptest = "0.9.2"

[lib]
name = "hedgewars_engine"
crate-type = ["dylib"]