-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
44 lines (37 loc) · 1.09 KB
/
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
43
44
[package]
name = "i18nrs"
version = "0.1.3"
edition = "2021"
rust-version = "1.79"
description = "🌐 A highly customizable Internationalization (i18n) component for WASM frameworks like Yew, Dioxus, and Leptos."
license = "MIT"
keywords = ["i18n", "yew", "rust", "dioxus", "leptos"]
categories = ["web-programming", "science"]
repository = "/~https://github.com/opensass/i18n-rs"
documentation = "https://docs.rs/i18nrs/"
authors = ["Mahmoud Harmouch <oss@wiseai.dev>"]
exclude = ["assets", "examples"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde_json = "1.0.113"
gloo-storage = "0.3.0"
yew = { version = "0.21.0", default-features = false, optional = true }
[features]
yew = ["dep:yew"]
[profile.release]
opt-level = "z"
debug = false
lto = "thin"
codegen-units = 1
panic = "abort"
strip = "symbols"
incremental = false
[badges]
maintenance = { status = "actively-developed" }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dev-dependencies]
log = "0.4.22"
bump2version = "0.1.4"
web-sys = "0.3.76"