45 lines
1.0 KiB
TOML
45 lines
1.0 KiB
TOML
[package]
|
|
version = "0.1.0"
|
|
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 = "2018"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen-test = "0.3.33"
|
|
|
|
[dependencies]
|
|
console_error_panic_hook = "0.1.7"
|
|
log = "0.4.17"
|
|
seed = "0.9.2"
|
|
console_log = {git = "http://git-private.h.xinu.tv/wathiede/console_log.git"}
|
|
serde = { version = "1.0.147", features = ["derive"] }
|
|
notmuch = {path = "../notmuch"}
|
|
shared = {path = "../shared"}
|
|
itertools = "0.10.5"
|
|
serde_json = { version = "1.0.93", features = ["unbounded_depth"] }
|
|
wasm-timer = "0.2.5"
|
|
css-inline = "0.8.5"
|
|
chrono = "0.4.31"
|
|
graphql_client = "0.13.0"
|
|
thiserror = "1.0.50"
|
|
seed_hooks = { git = "https://github.com/seed-rs/styles_hooks", package = "seed_hooks", branch = "main" }
|
|
|
|
|
|
[package.metadata.wasm-pack.profile.release]
|
|
wasm-opt = ['-Os']
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3.58"
|
|
features = [
|
|
"MediaQueryList",
|
|
"Window"
|
|
]
|