forked from slowtec/leaflet-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (32 loc) · 1.07 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
[package]
name = "leaflet"
version = "0.4.1"
authors = ["slowtec GmbH <[email protected]>", "Lewin Probst <[email protected]>", "Daniel Santana <[email protected]>"]
license = "MIT/Apache-2.0"
description = "A wasm-bindgen wrapper for Leaflet.js"
homepage = "https://github.com/slowtec/leaflet-rs"
repository = "https://github.com/slowtec/leaflet-rs"
edition = "2021"
readme = "README.md"
rust-version = "1.75"
[dependencies]
wasm-bindgen = "0.2"
js-sys = "0.3"
paste = "1"
url = "2"
[dependencies.web-sys]
version = "0.3"
features = ["Event", "HtmlElement", "MouseEvent"]
[badges]
maintenance = { status = "actively-developed" }
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
missing_const_for_fn = "warn"
# The error types returned should be self-explanatory.
missing_errors_doc = "allow"
# Repetitions of module/type names occur frequently when using many
# modules for keeping the size of the source files handy.
# Often types have the same name as their parent module.
module_name_repetitions = "allow"
# Allow #[wasm_bindgen] to create empty docs
empty_docs = "allow"