-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathCargo.toml
More file actions
107 lines (101 loc) · 3.24 KB
/
Cargo.toml
File metadata and controls
107 lines (101 loc) · 3.24 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
[workspace]
# Make sure this list matches the "Test Doc Build" section in .github/workflows/ci.yml
members = ["geozero", "geozero-bench", "geozero-cli"]
default-members = ["geozero", "geozero-cli"]
resolver = "3"
[workspace.package]
version = "0.14.0"
authors = [
"Pirmin Kalberer <pka@sourcepole.ch>",
"Yuri Astrakhan <YuriAstrakhan@gmail.com>",
]
edition = "2024"
homepage = "https://github.com/georust/geozero"
repository = "https://github.com/georust/geozero"
readme = "README.md"
license = "MIT OR Apache-2.0"
rust-version = "1.85.0"
[workspace.dependencies]
# Used in geozero-cli and geozero-bench
# geozero version must be in sync with flatgeobuf version!
flatgeobuf = "5.0.0"
geozero = { version = "0.14.0", default-features = false }
async-trait = "0.1"
base64 = "0.22.1"
byteorder = { version = "1.4.3", default-features = false }
bytes = "1.11.1"
clap = { version = "4.3", features = ["derive"] }
criterion = "0.7.0"
csv = "1.2.2"
dbase = "0.6.0"
diesel = { version = "2.2.3", default-features = false, features = ["postgres"] }
dup-indexer = "0.4.0"
env_logger = "0.11.5"
futures-util = "0.3.28"
gdal = { version = "0.18.0", default-features = false }
gdal-sys = "0.11.0"
geo = "0.31.0"
geo-types = { version = "0.7.11", default-features = false }
geojson = { version = "0.24.1", default-features = false }
geos = "10.0"
gpx = { version = "0.10", default-features = false }
hex = "0.4"
kdbush = "0.2"
log = "0.4.19"
lyon = "1.0.1"
postgis = "0.9.0"
postgres = "0.19"
postgres-types = "0.2"
prost = "0.14.1"
# NOTICE: When updating prost-build, remove geozero/src/mvt/vector_tile.rs to force a rebuild
prost-build = "0.14.1"
scroll = "0.13.0"
seek_bufread = "1.2"
serde_json = "1.0.104"
sqlx = { version = "0.8", default-features = false }
thiserror = "2.0.7"
tokio = { version = "1.30.0", default-features = false }
wkt = "0.14.0"
[workspace.lints.rust]
# unsafe_code = "forbid" # One day...
unused_qualifications = "warn"
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }
mut_mut = "allow"
explicit_iter_loop = "allow"
if_not_else = "allow"
doc_markdown = "allow" # 256
missing_errors_doc = "allow" # 190
cast_possible_truncation = "allow" # 56
must_use_candidate = "allow" # 54
unreadable_literal = "allow" # 51
semicolon_if_nothing_returned = "allow" # 43
cast_lossless = "allow" # 32
unnecessary_wraps = "allow" # 19
items_after_statements = "allow" # 16
cast_sign_loss = "allow" # 16
many_single_char_names = "allow" # 15
inefficient_to_string = "allow" # 12
ignore_without_reason = "allow" # 10
cast_possible_wrap = "allow" # 10
needless_raw_string_hashes = "allow" # 8
map_unwrap_or = "allow" # 8
ref_option = "allow" # 7
unnested_or_patterns = "allow" # 6
unnecessary_semicolon = "allow" # 6
no_effect_underscore_binding = "allow" # 4
match_wildcard_for_single_variants = "allow" # 4
match_same_arms = "allow" # 4
format_push_string = "allow" # 4
too_many_lines = "allow" # 2
struct_excessive_bools = "allow" # 2
single_match_else = "allow" # 2
redundant_closure_for_method_calls = "allow" # 2
missing_panics_doc = "allow" # 2
manual_assert = "allow" # 2
ignored_unit_patterns = "allow" # 2
wildcard_imports = "allow" # 1
float_cmp = "allow" # 1
enum_glob_use = "allow" # 1
[patch.crates-io]
geozero = { path = "./geozero" }