-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (38 loc) · 1.13 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
[package]
name = "portfolio"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
base64 = "0.22.1"
cached = { version = "0.53.1", features = ["async", "wasm"] }
chrono = "0.4.38"
console_error_panic_hook = "0.1.7"
futures = "0.3.30"
itertools = "0.13.0"
leptos = { version = "0.6.11", features = ["csr"] }
leptos_i18n = { version = "0.3.3", default-features = false, features = [
"csr",
"yaml_files",
"track_locale_files",
] }
leptos_meta = { version = "0.6.11", features = ["csr"] }
leptos_router = { version = "0.6.11", features = ["csr"] }
markdown = { git = "https://github.com/johannhof/markdown.rs.git", rev = "68ff3f837a24e47219e204b2c420a4f008951387" }
rand = "0.8.5"
reqwest = { version = "0.12.4", features = ["json"] }
serde_json = "1.0.117"
toml = "0.8.10"
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
web-sys = { version = "0.3.69", features = [
"HtmlElement",
"HtmlDocument",
"HtmlInputElement",
"HtmlCollection",
"EventTarget",
"MediaQueryList",
] }
[package.metadata.leptos-i18n]
default = "en"
locales = ["en", "fr"]