-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (47 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
52 lines (47 loc) · 1.19 KB
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
[package]
name = "dioxus-maplibre"
version = "0.0.7"
edition = "2024"
rust-version = "1.85"
description = "MapLibre GL JS wrapper for Dioxus 0.7"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Nevaberry/dioxus-maplibre"
keywords = ["dioxus", "maplibre", "maps", "gis", "wasm"]
categories = ["gui", "wasm", "web-programming"]
exclude = [
"e2e/",
"examples/",
"temp/",
"test-results/",
".github/",
".agents/",
".claude/",
"CLAUDE.md",
]
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_raw_string_hashes = "allow"
doc_markdown = "allow"
missing_const_for_fn = "allow"
suboptimal_flops = "allow"
too_many_lines = "allow"
option_if_let_else = "allow"
pub_with_shorthand = "allow"
redundant_pub_crate = "allow"
[dependencies]
dioxus = "0.7"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["v4", "js"] }
tracing = "0.1"
[features]
default = []
web = ["dioxus/web"]
[dev-dependencies]
wasm-bindgen-test = "0.3"