-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
220 lines (194 loc) · 6.51 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
[package]
name = "blockconvert"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib", "lib"]
[dependencies]
serde = { version = "1.0", features = ["derive", "rc"] }
url = { version = "2.5.0", features = ["serde"] }
axum = { version = "0.7", optional = true }
console_error_panic_hook = { version = "0.1", optional = true }
leptos = { git = "https://github.com/leptos-rs/leptos", version = "0.6", features = [
"nonce",
] }
leptos_axum = { git = "https://github.com/leptos-rs/leptos", version = "0.6", features = [
"nonce",
], optional = true }
leptos_meta = { git = "https://github.com/leptos-rs/leptos", version = "0.6", features = [
] }
leptos_router = { git = "https://github.com/leptos-rs/leptos", version = "0.6", features = [
] }
tokio = { version = "1", features = [
"rt-multi-thread",
"parking_lot",
"process",
"signal",
], optional = true }
tokio-util = { version = "0.7", optional = true }
tower = { version = "0.4", optional = true }
tower-http = { version = "0.5", features = [
"fs",
"compression-br",
"decompression-br",
], optional = true }
wasm-bindgen = { version = "=0.2.92", default-features = false, optional = true }
thiserror = "1"
http = "1"
csv = { version = "1.3.0", optional = true }
env_logger = { version = "0.11.3", optional = true }
log = "0.4.21"
console_log = { version = "1.0", features = ["color"], optional = true }
sqlx = { version = "0.7", features = [
"runtime-tokio",
"chrono",
"postgres",
"ipnetwork",
], optional = true }
reqwest = { version = "0.11.26", features = [
"native-tls",
"brotli",
], default-features = false, optional = true }
chrono = { version = "0.4", features = ["serde"] }
dotenvy = { version = "0.15.7", optional = true }
mimalloc = { version = "0.1.39", default-features = false, optional = true }
hickory-resolver = { version = "0.24.0", features = [
"tokio-runtime",
], optional = true }
addr = "0.15.6"
ipnetwork = "0.20.0"
futures = { version = "0.3.30", optional = true }
hickory-proto = { version = "0.24.0", default-features = false }
humantime = "2.1.0"
notify = { version = "6.1.1", optional = true }
async-channel = { version = "2.2.0", optional = true }
tokio-tungstenite = { version = "0.21.0", features = [
"native-tls",
], optional = true }
serde_json = { version = "1.0.114", optional = true }
metrics = { version = "0.22", optional = true }
metrics-exporter-prometheus = { version = "0.13.1", default-features = false, features = [
"push-gateway",
], optional = true }
clap = { version = "4.5.2", features = ["derive"], optional = true }
rand = {version = "0.8", optional = true}
toml = {version = "0.8", optional = true}
[features]
hydrate = [
"leptos/hydrate",
"leptos_meta/hydrate",
"leptos_router/hydrate",
"dep:console_log",
"dep:console_error_panic_hook",
"dep:wasm-bindgen",
]
ssr = [
"dep:axum",
"dep:tokio",
"dep:tokio-util",
"dep:tower",
"dep:tower-http",
"dep:leptos_axum",
"leptos/ssr",
"leptos_meta/ssr",
"leptos_router/ssr",
"dep:csv",
"dep:env_logger",
"dep:sqlx",
"dep:reqwest",
"dep:dotenvy",
"dep:mimalloc",
"dns_resolver",
"dep:notify",
"dep:async-channel",
"dep:tokio-tungstenite",
"dep:serde_json",
"dep:futures",
"dep:metrics",
"dep:metrics-exporter-prometheus",
"dep:clap",
"dep:rand",
"dep:toml",
]
dns_resolver = ["dep:hickory-resolver"]
default = ["ssr"]
# Defines a size-optimized profile for the WASM bundle in release mode
[profile.wasm-release]
inherits = "release"
opt-level = 'z'
lto = true
codegen-units = 1
panic = "abort"
[profile.wasm-dev]
inherits = "dev"
debug = 0
[profile.wasm-dev.package."*"]
opt-level = 's'
[profile.server-dev]
inherits = "dev"
opt-level = 1
debug = 0
lto = "off"
[profile.dev.package."*"]
opt-level = 3
[package.metadata.leptos]
# The name used by wasm-bindgen/cargo-leptos for the JS/WASM bundle. Defaults to the crate name
output-name = "blockconvert"
# 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/blockconvert"
# The site-root relative folder where all compiled output (JS, WASM and CSS) is written
# 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/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 = "127.0.0.1:3000"
# The port to use for automatic reload monitoring
reload-port = 3001
# [Optional] Command to use when running end2end tests. It will run in the end2end dir.
# [Windows] for non-WSL use "npx.cmd playwright test"
# This binary name can be checked in Powershell with Get-Command npx
end2end-cmd = "npx playwright test"
end2end-dir = "end2end"
# The browserlist query used for optimizing the CSS.
browserquery = "defaults"
# Set by cargo-leptos watch when building with that tool. Controls whether autoreload JS will be included in the head
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
bin-profile-dev = "server-dev"
# 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"
lib-profile-dev = "wasm-dev"
# The tailwind input file.
#
# Optional, Activates the tailwind build
tailwind-input-file = "style/tailwind.css"
# The tailwind config file.
#
# Optional, defaults to "tailwind.config.js" which if is not present
# is generated for you
tailwind-config-file = "tailwind.config.js"