-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (37 loc) · 888 Bytes
/
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
[package]
name = "viewer"
version = "0.0.1"
authors = ["habx"]
edition = "2021"
description = "Real-estate project viewer"
readme = "readme.md"
build = "./sources/build.rs"
[lib]
path = "./sources/lib.rs"
[dependencies]
gloo-events = "0.1"
gloo-net = { version = "0.2", default-features = false, features = ["http"] }
leptos = { version = "0.1", default-features = false, features = ["csr"] }
orbit = { git = "https://github.com/alexisfontaine/orbit", tag = "v0.13.1" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
console_error_panic_hook = "0.1"
[dependencies.web-sys]
version = "0.3"
features = [
"console",
"DomTokenList",
"KeyboardEvent",
"Location",
"UrlSearchParams",
]
[dev-dependencies]
futures = "0.3"
wasm-bindgen-test = "0.3"
[profile.release]
codegen-units = 1
lto = true
opt-level = "s"
[[bin]]
name = "default"
path = "./sources/main.rs"