-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (28 loc) · 1.02 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
[package]
name = "rusty_chat"
version = "0.1.0"
authors = ["Janosch Gräf <[email protected]>"]
edition = "2021"
[dependencies]
log = "0.4"
thiserror = "1"
leptos = { version = "0.6", features = ["nightly", "csr"] }
leptos_meta = { version = "0.6", features = ["nightly", "csr"] }
leptos_router = { version = "0.6", features = ["nightly", "csr"] }
leptos-use = { version = "0.10", features = ["serde"] }
console_error_panic_hook = "0.1"
wasm-logger = "0.2.0"
gloo-utils = "0.2"
wasm-bindgen = "0.2"
serde = { version = "1", features = ["derive"] }
toml = "0.8"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1", features = ["serde", "v4"] }
derive_more = "0.99"
web-sys = { version = "0.3", features = ["HtmlInputElement", "ScrollIntoViewOptions", "ScrollLogicalPosition", "Element"] }
futures = "0.3"
markdown = "1.0.0-alpha.16"
hf-textgen = { git = "https://github.com/jgraef/hf-textgen.git" }
semver = { version = "1", features = ["serde"] }
lazy_static = "1.4"
strum = { version = "0.26", features = ["derive"] }