rink-rs/Cargo.toml
Tiffany Bennett b75e67f86c Compile in definitions.units by default
This makes the default compilation of rink invoke the secondary
licensing clause, which results in the binaries being under the GPL.

You can still use your own definitions.units - it will only use the
built in one if it can't find another.
2016-08-22 12:03:00 -04:00

45 lines
1.1 KiB
TOML

[package]
name = "rink"
version = "0.2.1"
authors = ["Tiffany Bennett <tiffany@stormbit.net>"]
description = "Unit conversion tool and library, similar to frink"
homepage = "https://github.com/tiffany352/rink-rs"
repository = "https://github.com/tiffany352/rink-rs"
readme = "README.md"
license = "MPL-2.0"
keywords = ["unit", "math", "conversion", "cli", "tool"]
[features]
default = ["rustyline", "chrono-humanize", "gpl"]
ircbot = ["irc", "glob"]
web = ["hyper", "url", "sandbox"]
sandbox = ["libc", "ipc-channel"]
gpl = []
[dependencies]
rust-gmp = "0.3.2"
chrono = "0.2.25"
chrono-humanize = { version = "0.0.6", optional = true }
rustyline = { version = "0.2.3", optional = true }
irc = { version = "0.11.3", optional = true }
glob = { version = "0.2.11", optional = true }
hyper = { version = "0.9.10", optional = true }
url = { version = "1.2.0", optional = true }
libc = { version = "0.2.14", optional = true }
ipc-channel = { version = "0.5.1", optional = true }
[[bin]]
name = "rink"
doc = false
[[bin]]
name = "rink-debug-tokens"
doc = false
[[bin]]
name = "rink-irc"
doc = false
[[bin]]
name = "rink-web"
doc = false