rink-rs/Cargo.toml

47 lines
1.1 KiB
TOML
Raw Normal View History

2016-08-02 19:33:19 +00:00
[package]
2016-08-03 14:39:08 +00:00
name = "rink"
2016-09-08 15:32:46 +00:00
version = "0.3.1"
2016-08-02 19:33:19 +00:00
authors = ["Tiffany Bennett <tiffany@stormbit.net>"]
2016-08-03 14:39:08 +00:00
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"
2016-08-22 14:46:22 +00:00
license = "MPL-2.0"
2016-08-03 14:42:00 +00:00
keywords = ["unit", "math", "conversion", "cli", "tool"]
2016-08-02 19:33:19 +00:00
2016-08-03 17:18:20 +00:00
[features]
2016-08-30 15:13:09 +00:00
default = ["linefeed", "chrono-humanize", "gpl"]
2016-08-09 02:21:07 +00:00
ircbot = ["irc", "glob"]
2016-08-14 03:38:12 +00:00
web = ["hyper", "url", "sandbox"]
sandbox = ["libc", "ipc-channel"]
gpl = []
2016-08-03 17:18:20 +00:00
2016-08-02 19:33:19 +00:00
[dependencies]
rust-gmp = "0.3.2"
chrono = "0.2.25"
2016-09-05 20:30:13 +00:00
strsim = "0.5.1"
2016-08-13 00:55:22 +00:00
chrono-humanize = { version = "0.0.6", optional = true }
2016-08-30 17:50:43 +00:00
linefeed = { version = "0.1.4", optional = true }
2016-08-04 02:21:28 +00:00
irc = { version = "0.11.3", optional = true }
2016-08-09 02:21:07 +00:00
glob = { version = "0.2.11", optional = true }
2016-08-14 01:57:46 +00:00
hyper = { version = "0.9.10", optional = true }
url = { version = "1.2.0", optional = true }
2016-08-14 03:38:12 +00:00
libc = { version = "0.2.14", optional = true }
ipc-channel = { version = "0.5.1", optional = true }
2016-08-04 02:21:28 +00:00
[[bin]]
name = "rink"
doc = false
[[bin]]
name = "rink-debug-tokens"
doc = false
[[bin]]
name = "rink-irc"
doc = false
2016-08-14 01:57:46 +00:00
[[bin]]
name = "rink-web"
doc = false