leptos/examples/hackernews_axum/Cargo.toml

95 lines
3.4 KiB
TOML
Raw Normal View History

2022-11-16 06:08:09 +08:00
[package]
name = "hackernews_axum"
2022-11-16 06:08:09 +08:00
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
2023-04-07 10:53:52 +08:00
[profile.release]
codegen-units = 1
lto = true
2022-11-16 06:08:09 +08:00
[dependencies]
console_error_panic_hook = "0.1"
2024-04-05 11:11:28 +08:00
leptos = { path = "../../leptos" }
leptos_axum = { path = "../../integrations/axum", optional = true }
2024-04-05 11:11:28 +08:00
leptos_meta = { path = "../../meta" }
leptos_router = { path = "../../router" }
serde = { version = "1.0", features = ["derive"] }
tracing = "0.1"
gloo-net = { version = "0.6", features = ["http"] }
reqwest = { version = "0.12", features = ["json"] }
axum = { version = "0.7", optional = true }
tower = { version = "0.4", optional = true }
tower-http = { version = "0.5", features = ["fs"], optional = true }
tokio = { version = "1", features = ["full"], optional = true }
http = { version = "1.0", optional = true }
2022-12-28 21:53:05 +08:00
web-sys = { version = "0.3", features = ["AbortController", "AbortSignal"] }
wasm-bindgen = "0.2"
2024-06-23 01:01:49 +08:00
send_wrapper = { version = "0.6.0", features = ["futures"] }
2022-11-16 06:08:09 +08:00
[features]
default = ["csr"]
2024-06-23 01:01:49 +08:00
csr = ["leptos/csr"]
hydrate = ["leptos/hydrate"]
ssr = [
2023-03-08 03:03:54 +08:00
"dep:axum",
"dep:tower",
"dep:tower-http",
"dep:tokio",
"dep:http",
"leptos/ssr",
"leptos_axum",
"leptos_meta/ssr",
"leptos_router/ssr",
]
2022-11-16 06:08:09 +08:00
[package.metadata.cargo-all-features]
denylist = ["axum", "tower", "tower-http", "tokio", "http", "leptos_axum"]
2022-11-16 06:08:09 +08:00
skip_feature_sets = [["csr", "ssr"], ["csr", "hydrate"], ["ssr", "hydrate"]]
[package.metadata.leptos]
2023-03-08 03:03:54 +08:00
# The name used by wasm-bindgen/cargo-leptos for the JS/WASM bundle. Defaults to the crate name
output-name = "hackernews_axum"
# 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
2023-03-08 03:03:54 +08:00
# Defaults to pkg
site-pkg-dir = "pkg"
# [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.css"
# [Optional] Files in the asset-dir will be copied to the site-root directory
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.
2023-03-08 03:03:54 +08:00
site-addr = "127.0.0.1:3000"
# The port to use for automatic reload monitoring
2023-03-08 03:03:54 +08:00
reload-port = 3001
# [Optional] Command to use when running end2end tests. It will run in the end2end dir.
end2end-cmd = "npx playwright test"
# The browserlist query used for optimizing the CSS.
2023-03-08 03:03:54 +08:00
browserquery = "defaults"
# Set by cargo-leptos watch when building with that tool. Controls whether autoreload JS will be included in the head
2023-03-08 03:03:54 +08:00
watch = false
# 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.
2023-03-08 03:03:54 +08:00
lib-default-features = false