rink-rs/Cargo.toml

41 lines
1.2 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"
2019-01-16 04:29:03 +00:00
version = "0.4.4"
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]
default = ["linefeed", "chrono-humanize", "gpl", "currency"]
2016-08-14 03:38:12 +00:00
sandbox = ["libc", "ipc-channel"]
gpl = []
2019-10-31 02:49:32 +00:00
currency = ["reqwest", "xml-rs", "json"]
2016-10-05 20:01:21 +00:00
nightly = ["serde", "serde_derive"]
2016-08-03 17:18:20 +00:00
2016-08-02 19:33:19 +00:00
[dependencies]
2019-01-16 04:23:37 +00:00
rust-gmp = "0.5"
chrono = "0.2.25"
2016-09-05 20:30:13 +00:00
strsim = "0.5.1"
2016-10-23 01:52:08 +00:00
chrono-tz = "0.2.2"
2016-08-13 00:55:22 +00:00
chrono-humanize = { version = "0.0.6", optional = true }
linefeed = { version = "0.4.0", optional = true }
2019-10-31 02:49:32 +00:00
reqwest = { version = "0.9.2", 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 }
xml-rs = { version = "0.3.4", optional = true }
json = { version = "0.10.2", optional = true }
serde = { version = "0.8.16", optional = true }
serde_derive = { version = "0.8.16", optional = true }
dirs = "1.0.4"
2016-08-04 02:21:28 +00:00
[[bin]]
name = "rink"
doc = false
2016-10-04 02:23:15 +00:00
[workspace]
2016-10-04 02:26:50 +00:00
members = ["web", "irc"]