2022-11-16 06:08:09 +08:00
[ package ]
2023-01-01 07:52:19 +08:00
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 ]
2023-12-31 08:05:17 +08:00
console_log = "1.0"
console_error_panic_hook = "0.1"
2023-06-27 09:12:14 +08:00
leptos = { path = "../../leptos" , features = [ "nightly" ] }
2022-11-28 13:03:56 +08:00
leptos_axum = { path = "../../integrations/axum" , optional = true }
2023-06-27 09:12:14 +08:00
leptos_meta = { path = "../../meta" , features = [ "nightly" ] }
leptos_router = { path = "../../router" , features = [ "nightly" ] }
2023-12-31 08:05:17 +08:00
log = "0.4"
simple_logger = "4.0"
serde = { version = "1.0" , features = [ "derive" ] }
2023-03-13 22:16:20 +08:00
tracing = "0.1"
2023-12-31 08:05:17 +08:00
gloo-net = { version = "0.4" , features = [ "http" ] }
reqwest = { version = "0.11" , 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"
2022-11-16 06:08:09 +08:00
[ features ]
default = [ "csr" ]
csr = [ "leptos/csr" , "leptos_meta/csr" , "leptos_router/csr" ]
hydrate = [ "leptos/hydrate" , "leptos_meta/hydrate" , "leptos_router/hydrate" ]
2022-11-21 07:28:47 +08:00
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-21 07:28:47 +08:00
]
2022-11-16 06:08:09 +08:00
[ package . metadata . cargo-all-features ]
2022-11-21 07:28:47 +08:00
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" ] ]
2022-12-22 15:08:39 +08:00
2023-01-01 07:52:19 +08:00
[ 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"
2022-12-22 15:08:39 +08:00
# 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.
2023-01-01 10:39:05 +08:00
site-root = "target/site"
2022-12-28 02:58:05 +08:00
# 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"
2022-12-28 02:58:05 +08:00
# [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
2023-01-01 10:39:05 +08:00
style-file = "./style.css"
2022-12-28 02:58:05 +08:00
# [Optional] Files in the asset-dir will be copied to the site-root directory
2023-01-10 07:27:52 +08:00
assets-dir = "public"
2022-12-22 15:08:39 +08:00
# 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"
2022-12-22 15:08:39 +08:00
# The port to use for automatic reload monitoring
2023-03-08 03:03:54 +08:00
reload-port = 3001
2022-12-22 15:08:39 +08:00
# [Optional] Command to use when running end2end tests. It will run in the end2end dir.
2022-12-28 02:58:05 +08:00
end2end-cmd = "npx playwright test"
2022-12-22 15:08:39 +08:00
# The browserlist query used for optimizing the CSS.
2023-03-08 03:03:54 +08:00
browserquery = "defaults"
2024-02-05 18:20:53 +08:00
# 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
2022-12-22 15:08:39 +08:00
# The environment Leptos will run in, usually either "DEV" or "PROD"
2022-12-28 02:58:05 +08:00
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