-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
23 lines (22 loc) · 847 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
[package]
name = "website"
version = "0.1.2"
authors = ["Austin Lake <[email protected]>"]
edition = "2021"
rust-version = "1.71.0"
description = "My personal website. Built from scratch in Rust. Deployed via WebAssembly."
readme = "https://github.com/austinlake04/website/blob/main/README.md"
homepage = "https://austinlake04.com"
repository = "https://github.com/austinlake04/website"
license = "MIT or Apache-2.0"
categories = ["wasm"]
keywords = ["leptos", "webassembly", "wasm", ]
[dependencies]
color-eyre = "0.6.2"
strum = { version = "0.24", features = ["derive"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
# tokio = { version = "1.28.0", features = ["full"] }
leptos = { version = "0.2.5", features = ["stable"]}
leptos_router = { version = "0.2.5", features = ["csr"]}
leptos_meta = { version = "0.2.5", features = ["csr"]}