-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathCargo.toml
More file actions
110 lines (104 loc) · 2.88 KB
/
Copy pathCargo.toml
File metadata and controls
110 lines (104 loc) · 2.88 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
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
[workspace]
resolver = "3"
members = ["mlt", "mlt-core", "mlt-ffi", "mlt-py", "mlt-synthetics", "mlt-wasm"]
default-members = ["mlt", "mlt-core", "mlt-ffi", "mlt-synthetics"]
# Exclusions:
# - mlt-core/fuzz: cargo-fuzz does not have workspace support
exclude = ["mlt-core/fuzz"]
[workspace.package]
authors = ["Maplibre Contributors"]
categories = ["science::geo"]
edition = "2024"
homepage = "https://maplibre.org"
keywords = ["maplibre", "tile", "mlt", "mvt", "map"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/maplibre/maplibre-tile-spec"
rust-version = "1.92"
[workspace.dependencies]
anyhow = "1"
arbitrary = { version = "1.4", features = ["derive"] }
bitvec = "1"
brotli = "8"
bytemuck = "1.25.0"
bytes = "1"
clap = { version = "4.6.0", features = ["derive"] }
criterion = { version = "0.8", features = ["html_reports"] }
crossbeam-channel = "0.5"
crossterm = "0.29.0"
derive-debug = "0.1.2"
diplomat = "0.15.0"
diplomat-runtime = "0.15.1"
enum_dispatch = "0.3"
fast-mvt = "0.4.0"
fastpfor = { version = "0.9", features = ["rust"] }
flate2 = "1"
fsst-rs = "0.5"
futures = "0.3"
geo = { version = "0.33.1", default-features = false }
geo-types = "0.7.19"
glob = "0.3"
globset = "0.4"
hex = "0.4.3"
hilbert_2d = "1.1.0"
hotpath = "0.17"
indicatif = "0.18"
insta = "1.47.2"
integer-encoding = "4.0.2"
js-sys = "0.3"
martin-tile-utils = "0.7"
mbtiles = { version = "0.17", default-features = false, features = ["transcode"] }
mimalloc = "0.1.52"
mlt-core = { version = "0.12.0", path = "mlt-core" }
moka = { version = "0.12", features = ["sync"] }
num-traits = "0.2.19"
num_enum = "0.7.6"
pmtiles = "0.23.0"
pretty_assertions = "1.4"
probabilistic-collections = "0.7"
proptest = "1.11"
proptest-derive = "0.8"
pyo3 = "0.28.3"
pyo3-stub-gen = "0.23.0"
pythonize = "0.28"
ratatui = "0.30.1"
rayon = "1"
rstar = "0.13"
rstest = "0.26.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0.150"
size_format = "1"
sqlx = { version = "0.8", default-features = false, features = [
"sqlite",
"runtime-tokio",
] }
strum = { version = "0.28.0", default-features = false, features = ["derive"] }
tabled = "0.21"
test_each_file = "0.3.5"
thiserror = "2.0.11"
thousands = "0.2"
tokio = { version = "1", features = ["macros", "rt", "sync", "time"] }
union-find = "0.4.4"
usize_cast = "1.1.0"
walkdir = "2"
wasm-bindgen = "0.2"
wide = "1.5.0"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
zigzag = "0.1.0"
zstd = "0.13"
[workspace.lints.rust]
unsafe_code = "forbid"
unused_qualifications = "warn"
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }
[workspace.lints.clippy]
cargo = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
# Restrictions
panic_in_result_fn = "warn"
todo = "warn"
unimplemented = "warn"
use_self = "warn"
# Too noisy
missing_errors_doc = "allow"
missing_panics_doc = "allow"
multiple_crate_versions = "allow"
too_many_lines = "allow"