-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
46 lines (39 loc) · 1.1 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
[workspace]
members = [
"examples/basic"
]
resolver = "2"
[workspace.package]
version = "0.0.0"
edition = "2021"
rust-version = "1.82"
authors = ["Markus Kohlhase <[email protected]>"]
license = "MIT/Apache-2.0"
description = "A Leaflet.js wrapper for Xilem web"
homepage = "https://github.com/slowtec/xilem-leaflet"
repository = "https://github.com/slowtec/xilem-leaflet"
[package]
name = "xilem-leaflet"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
description.workspace = true
homepage.workspace = true
repository.workspace = true
[dependencies]
leaflet = "0.4.1"
log = "0.4.22"
wasm-bindgen-futures = "0.4.45"
web-sys = "0.3.72"
xilem_web = "0.1.0"
[patch.crates-io.xilem_web]
git = "https://github.com/linebender/xilem"
rev = "30cb5fb6a694908a74ed8969247807ce821d624b"
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }
missing_const_for_fn = "warn"
# The error types returned should be self-explanatory.
missing_errors_doc = "allow"
# This is a matter of taste... and I just like it that way ;-P
mod_module_files = "allow"