-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
22 lines (19 loc) · 848 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "nines"
version = "0.0.0-9S"
authors = ["MaulingMonkey <[email protected]>"]
edition = "2018"
description = "9-Slice scaling math"
documentation = "https://docs.rs/nines/"
repository = "https://github.com/MaulingMonkey/nines"
readme = "README.md"
keywords = ["math", "slice", "nine", "9"]
categories = ["mathematics", "graphics", "multimedia::images", "gui"]
license = "MIT OR Apache-2.0"
include = ["/src/**/*", "/Cargo.toml", "/LICENSE-MIT", "/LICENSE-APACHE", "/Readme.md"]
[features]
default = []
debug = [] # (Default: Off). Enable additional asserts, may harm performance.
unsigned-scalar = [] # (Default: Off). Enable `Scalar` to be used with `uNN`. Way too easy to have negative values in UI layout, so I discourage this.
[dependencies]