2016-08-02 19:33:19 +00:00
|
|
|
[package]
|
2016-08-03 14:39:08 +00:00
|
|
|
name = "rink"
|
2016-09-20 17:29:16 +00:00
|
|
|
version = "0.3.2"
|
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"
|
2016-08-03 15:01:27 +00:00
|
|
|
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-09-16 16:40:13 +00:00
|
|
|
default = ["linefeed", "chrono-humanize", "gpl", "currency"]
|
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"]
|
2016-08-22 16:03:00 +00:00
|
|
|
gpl = []
|
2016-09-19 19:53:24 +00:00
|
|
|
currency = ["hyper", "xml-rs", "json"]
|
2016-08-03 17:18:20 +00:00
|
|
|
|
2016-08-02 19:33:19 +00:00
|
|
|
[dependencies]
|
2016-08-08 21:37:41 +00:00
|
|
|
rust-gmp = "0.3.2"
|
2016-08-11 03:25:47 +00:00
|
|
|
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-09-16 16:40:13 +00:00
|
|
|
xml-rs = { version = "0.3.4", optional = true }
|
2016-09-19 19:53:24 +00:00
|
|
|
json = { version = "0.10.2", optional = true }
|
2016-08-04 02:21:28 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "rink"
|
|
|
|
doc = false
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "rink-irc"
|
|
|
|
doc = false
|
2016-08-14 01:57:46 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "rink-web"
|
|
|
|
doc = false
|