137 lines
4.3 KiB
TOML
137 lines
4.3 KiB
TOML
[package]
|
|
name = "ascend"
|
|
version = "0.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
axum = { version = "0.7", optional = true }
|
|
camino = { version = "1.1", optional = true }
|
|
chrono = { version = "0.4.39", features = ["now", "serde"] }
|
|
clap = { version = "4.5.7", features = ["derive"] }
|
|
confik = { version = "0.12", optional = true, features = ["camino"] }
|
|
console_error_panic_hook = "0.1"
|
|
derive_more = { version = "2", features = [
|
|
"display",
|
|
"error",
|
|
"from",
|
|
"from_str",
|
|
] }
|
|
http = "1"
|
|
image = { version = "0.25", optional = true }
|
|
leptos = { version = "0.7.7", features = ["tracing"] }
|
|
leptos_axum = { version = "0.7", optional = true }
|
|
leptos_meta = { version = "0.7" }
|
|
leptos_router = { version = "0.7.0" }
|
|
moonboard-parser = { workspace = true, optional = true }
|
|
rand = { version = "0.9", default-features = false, features = ["thread_rng"] }
|
|
ron = { version = "0.8" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
server_fn = { version = "0.7.4", features = ["cbor"] }
|
|
smart-default = "0.7.1"
|
|
tokio = { version = "1", features = ["rt-multi-thread"], optional = true }
|
|
tower = { version = "0.4", optional = true }
|
|
tower-http = { version = "0.5", features = ["fs"], optional = true }
|
|
tracing = { version = "0.1" }
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
|
tracing-subscriber-wasm = "0.1.0"
|
|
type-toppings = { version = "0.2.1", features = ["result", "iterator"] }
|
|
wasm-bindgen = "=0.2.100"
|
|
web-sys = { version = "0.3.76", features = ["File", "FileList"] }
|
|
xdg = { version = "2.5", optional = true }
|
|
uuid = { version = "1.12", features = ["serde", "v4"] }
|
|
redb = { version = "2.4", optional = true }
|
|
bincode = { version = "1.3", optional = true }
|
|
serde_json = { version = "1" }
|
|
codee = { version = "0.3" }
|
|
error_reporter = { version = "1" }
|
|
getrandom = { version = "0.3.1" }
|
|
|
|
[dev-dependencies]
|
|
test-try = "0.1"
|
|
|
|
[dev-dependencies.serde_json]
|
|
version = "1"
|
|
|
|
[features]
|
|
hydrate = ["leptos/hydrate", "getrandom/wasm_js", "uuid/js"]
|
|
ssr = [
|
|
"dep:axum",
|
|
"dep:redb",
|
|
"dep:image",
|
|
"dep:bincode",
|
|
"dep:tokio",
|
|
"dep:tower",
|
|
"dep:tower-http",
|
|
"dep:leptos_axum",
|
|
"dep:confik",
|
|
"dep:xdg",
|
|
"dep:camino",
|
|
"dep:moonboard-parser",
|
|
"leptos/ssr",
|
|
"leptos_meta/ssr",
|
|
"leptos_router/ssr",
|
|
]
|
|
|
|
[package.metadata.leptos]
|
|
# The name used by wasm-bindgen/cargo-leptos for the JS/WASM bundle. Defaults to the crate name
|
|
output-name = "ascend"
|
|
|
|
# The site root folder is where cargo-leptos generate all output. WARNING: all content of this folder will be erased on a rebuild. Use it in your server setup.
|
|
site-root = "target/site"
|
|
|
|
# The site-root relative folder where all compiled output (JS, WASM and CSS) is written
|
|
# Defaults to pkg
|
|
site-pkg-dir = "pkg"
|
|
|
|
tailwind-input-file = "style/tailwind.css"
|
|
|
|
# [Optional] The source CSS file. If it ends with .sass or .scss then it will be compiled by dart-sass into CSS. The CSS is optimized by Lightning CSS before being written to <site-root>/<site-pkg>/app.css
|
|
style-file = "style/main.scss"
|
|
# Assets source dir. All files found here will be copied and synchronized to site-root.
|
|
# The assets-dir cannot have a sub directory with the same name/path as site-pkg-dir.
|
|
#
|
|
# Optional. Env: LEPTOS_ASSETS_DIR.
|
|
assets-dir = "public"
|
|
|
|
# The IP and port (ex: 127.0.0.1:3000) where the server serves the content. Use it in your server setup.
|
|
site-addr = "0.0.0.0:1337"
|
|
|
|
# The port to use for automatic reload monitoring
|
|
reload-port = 3001
|
|
|
|
# The browserlist query used for optimizing the CSS.
|
|
browserquery = "defaults"
|
|
|
|
# The environment Leptos will run in, usually either "DEV" or "PROD"
|
|
env = "DEV"
|
|
|
|
# The features to use when compiling the bin target
|
|
#
|
|
# Optional. Can be over-ridden with the command line parameter --bin-features
|
|
bin-features = ["ssr"]
|
|
|
|
# If the --no-default-features flag should be used when compiling the bin target
|
|
#
|
|
# Optional. Defaults to false.
|
|
bin-default-features = false
|
|
|
|
# The features to use when compiling the lib target
|
|
#
|
|
# Optional. Can be over-ridden with the command line parameter --lib-features
|
|
lib-features = ["hydrate"]
|
|
|
|
# If the --no-default-features flag should be used when compiling the lib target
|
|
#
|
|
# Optional. Defaults to false.
|
|
lib-default-features = false
|
|
|
|
# The profile to use for the lib target when compiling for release
|
|
#
|
|
# Optional. Defaults to "release".
|
|
lib-profile-release = "wasm-release"
|