2016-08-02 19:33:19 +00:00
|
|
|
[package]
|
2016-08-03 14:39:08 +00:00
|
|
|
name = "rink"
|
2021-10-31 22:10:02 +00:00
|
|
|
version = "0.6.2"
|
2020-07-18 09:11:41 +00:00
|
|
|
description = "Unit conversion tool, similar to frink"
|
2020-09-20 20:32:32 +00:00
|
|
|
homepage = "https://rinkcalc.app"
|
2016-08-03 14:39:08 +00:00
|
|
|
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"]
|
2021-04-01 23:13:17 +00:00
|
|
|
categories = ["command-line-utilities", "mathematics", "science"]
|
2020-04-23 02:04:18 +00:00
|
|
|
edition = "2018"
|
2016-08-02 19:33:19 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-03-25 01:29:49 +00:00
|
|
|
clap = "3"
|
2020-08-06 23:25:12 +00:00
|
|
|
dirs = "3.0.1"
|
2021-04-01 23:13:17 +00:00
|
|
|
reqwest = { version = "0.11.2", features = ["blocking"] }
|
|
|
|
chrono = "0.4.19"
|
2020-09-21 03:45:22 +00:00
|
|
|
serde_json = "1"
|
2021-02-15 04:25:27 +00:00
|
|
|
toml = "0.5"
|
|
|
|
serde_derive = "1"
|
|
|
|
serde = "1"
|
|
|
|
tempfile = "3.2"
|
|
|
|
eyre = "0.6"
|
|
|
|
color-eyre = { version = "0.5", default-features = false }
|
|
|
|
humantime-serde = "1.0.1"
|
2021-04-05 23:04:46 +00:00
|
|
|
rustyline = "8.0.0"
|
|
|
|
ansi_term = "0.12"
|
2021-06-06 01:18:00 +00:00
|
|
|
async-std = { version = "1.9", features = ["unstable", "attributes"] }
|
|
|
|
ubyte = { version = "0.10.1", features = ["serde"] }
|
2020-07-18 09:16:52 +00:00
|
|
|
|
|
|
|
[dependencies.rink-core]
|
2021-04-06 00:31:39 +00:00
|
|
|
version = "0.6"
|
2020-07-18 09:16:52 +00:00
|
|
|
path = "./core"
|
2016-08-04 02:21:28 +00:00
|
|
|
|
2021-06-06 01:18:00 +00:00
|
|
|
[dependencies.rink-sandbox]
|
|
|
|
version = "0.6"
|
|
|
|
path = "./sandbox"
|
|
|
|
|
2016-10-04 02:23:15 +00:00
|
|
|
[workspace]
|
2021-06-06 01:18:00 +00:00
|
|
|
members = ["core", "rink-js", "sandbox"]
|
2020-09-21 03:45:22 +00:00
|
|
|
|
|
|
|
[package.metadata.wasm-pack.profile.profiling]
|
|
|
|
wasm-opt = ['-g', '-O']
|