All checks were successful
Continuous integration / Test Suite (pull_request) Successful in 38s
Continuous integration / Check (pull_request) Successful in 1m20s
Continuous integration / Rustfmt (pull_request) Successful in 32s
Continuous integration / build (pull_request) Successful in 1m36s
Continuous integration / Rustfmt (push) Successful in 32s
Continuous integration / Check (push) Successful in 1m22s
Continuous integration / build (push) Successful in 45s
Continuous integration / Test Suite (push) Successful in 5m40s
54 lines
1.4 KiB
TOML
54 lines
1.4 KiB
TOML
[package]
|
|
version = "0.0.141"
|
|
name = "letterbox"
|
|
repository = "https://github.com/seed-rs/seed-quickstart"
|
|
authors = ["Bill Thiede <git@xinu.tv>"]
|
|
description = "App Description"
|
|
categories = ["category"]
|
|
license = "MIT"
|
|
readme = "./README.md"
|
|
edition = "2021"
|
|
|
|
[build-dependencies]
|
|
build-info-build = "0.0.39"
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen-test = "0.3.33"
|
|
|
|
[dependencies]
|
|
console_error_panic_hook = "0.1.7"
|
|
log = "0.4.17"
|
|
seed = { version = "0.10.0", features = ["routing"] }
|
|
#seed = "0.9.2"
|
|
console_log = { version = "0.1.0", registry = "xinu" }
|
|
serde = { version = "1.0.147", features = ["derive"] }
|
|
notmuch = { path = "../notmuch" }
|
|
shared = { path = "../shared" }
|
|
itertools = "0.14.0"
|
|
serde_json = { version = "1.0.93", features = ["unbounded_depth"] }
|
|
chrono = "0.4.31"
|
|
graphql_client = "0.14.0"
|
|
thiserror = "1.0.50"
|
|
seed_hooks = { git = "https://github.com/wathiede/styles_hooks", package = "seed_hooks", branch = "main" }
|
|
gloo-net = { version = "0.6.0", features = ["json", "serde_json"] }
|
|
human_format = "1.1.0"
|
|
build-info = "0.0.39"
|
|
wasm-bindgen = "=0.2.100"
|
|
uuid = { version = "1.13.1", features = [
|
|
"js",
|
|
] } # direct dep to set js feature, prevents Rng issues
|
|
|
|
[package.metadata.wasm-pack.profile.release]
|
|
wasm-opt = ['-Os']
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3.58"
|
|
features = [
|
|
"Clipboard",
|
|
"DomRect",
|
|
"Element",
|
|
"MediaQueryList",
|
|
"Navigator",
|
|
"Window",
|
|
]
|