remove `#!/usr/bin/env sh`
[liba.git] / Cargo.toml
blobb52788aae1dc9d6619b2b32c4aba4dd3681e5a1b
1 [package]
2 name = "liba"
3 version = "0.1.14"
4 authors = ["tqfx <tqfx@tqfx.org>"]
5 description = "An algorithm library based on C/C++"
6 documentation = "https://docs.rs/liba"
7 repository = "https://github.com/tqfx/liba"
8 homepage = "https://github.com/tqfx/liba"
9 license = "MPL-2.0"
10 keywords = ["algorithm"]
11 categories = ["algorithms"]
12 edition = "2018"
14 [build-dependencies]
15 cmake = { version = "0.1", optional = true }
16 cc = { version = "1" }
18 [features]
19 static_crt = []
20 # floating-point number are stored using C’s float type
21 float = []
22 std = []