iomail/Cargo.toml

40 lines
873 B
TOML
Raw Normal View History

2024-05-21 06:50:03 +02:00
[package]
name = "iomail-server"
version = "0.1.0"
edition = "2021"
description = "iomail"
authors = ["davidontop <me@davidon.top>"]
readme = "README.md"
documentation = "https://docs.rs/iomail"
license = "GLWTPL"
repository = "git@github.com:davidontop/iomail.git"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
tokio = { version = "1.0", features = ["full"] }
[profile.release]
codegen-units = 1
lto = true
opt-level = 'z'
[[workspace.metadata.leptos]]
name = "iomail"
bin-package = "server"
lib-package = "client"
site-root = "target/site"
site-pkg-dir = "pkg"
style-file = "client/globaltw.css"
assets-dir = "public"
site-addr = "127.0.0.1:8690"
reload-port = 3001
watch = false
env = "DEV"
bin-features = []
bin-default-features = false
lib-features = []
lib-default-features = false