33 lines
1.3 KiB
TOML
33 lines
1.3 KiB
TOML
[package]
|
|
name = "draft-manager"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
console_error_panic_hook = "0.1.7"
|
|
dedent = "0.1.1"
|
|
futures = "0.3.31"
|
|
leptos = { version = "0.7.7", features = ["csr"] }
|
|
diesel = { git = "https://github.com/diesel-rs/diesel.git", features = ["sqlite"] }
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
serde-wasm-bindgen = "0.6.5"
|
|
serde_json = "1.0.140"
|
|
thiserror = "2.0.12"
|
|
url = "2.5.4"
|
|
wasm-bindgen = "0.2.100"
|
|
wasm-bindgen-futures = { version = "0.4.50", features = ["futures-core-03-stream"] }
|
|
diesel-derive-enum = { version = "2.1.0", features = ["sqlite"] }
|
|
diesel_migrations = { git = "https://github.com/diesel-rs/diesel.git", features = ["sqlite"] }
|
|
time = { version = "0.3.39", features = ["formatting", "parsing", "wasm-bindgen"] }
|
|
wasm-logger = "0.2.0"
|
|
log = "0.4.26"
|
|
sqlite-wasm-rs = { version = ">=0.3.0, <0.4.0" , default-features = false, features = ["precompiled"]}
|
|
thiserror-ext = "0.2.1"
|
|
futures-util = "0.3.31"
|
|
gloo = { version = "0.11.0", features = ["futures"] }
|
|
gloo-net = { version = "0.6.0" }
|
|
web-sys = { version = "0.3.77", features = ["FileSystemWritableFileStream", "WorkerGlobalScope"] }
|
|
|
|
[target.'cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))'.dev-dependencies]
|
|
wasm-bindgen-test = "0.3.50"
|