-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (35 loc) · 942 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "costoflife"
version = "0.3.2"
authors = ["Andrea Giacobino <[email protected]>"]
edition = "2018"
license = "MIT"
description = "The CostOf.Life Calculator"
repository = "https://github.com/noandrea/costoflife-rs"
homepage = "https://thecostof.life"
[package.metadata.wasm-pack.profile.release]
# wasm-opt = false
# wasm-opt = ['-Os', '--enable-mutable-globals']
wasm-opt = ['-Os']
[profile.release]
lto = true
opt-level = 's'
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib", "lib"]
[dependencies]
chrono = { version = "0.4.19", features = ["wasmbind"] }
bigdecimal = "0.3.0"
num-bigint = "0.4.3"
slug = "0.1.4"
lazy_static = "1.4.0"
regex = "1.5.5"
clap = "3.1.14"
dialoguer = "0.10.0"
blake3 = "1.3.1"
wasm-bindgen = "0.2.80"
pad = "0.1.6"
simsearch = "0.2.3"
directories-next = "2.0.0"
[dev-dependencies]
wasm-bindgen-test = "0.3.30"