rusty-polygon-geohasher 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- rusty_polygon_geohasher-0.1.0/.cargo/config.toml +10 -0
- rusty_polygon_geohasher-0.1.0/.github/workflows/CI.yml +169 -0
- rusty_polygon_geohasher-0.1.0/.gitignore +1 -0
- rusty_polygon_geohasher-0.1.0/Cargo.lock +534 -0
- rusty_polygon_geohasher-0.1.0/Cargo.toml +23 -0
- rusty_polygon_geohasher-0.1.0/LICENSE +21 -0
- rusty_polygon_geohasher-0.1.0/PKG-INFO +3 -0
- rusty_polygon_geohasher-0.1.0/poetry.lock +319 -0
- rusty_polygon_geohasher-0.1.0/pyproject.toml +28 -0
- rusty_polygon_geohasher-0.1.0/src/lib.rs +132 -0
- rusty_polygon_geohasher-0.1.0/tests/data/verdun_wkt.txt +1 -0
- rusty_polygon_geohasher-0.1.0/tests/data/whitehorse_wkt.txt +1 -0
- rusty_polygon_geohasher-0.1.0/tests/test_geohasher.py +462 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
#[build]
|
|
2
|
+
#target = ["x86_64-unknown-linux-gnu", "aarch64-unknown-linux-gnu", "aarch64-apple-darwin"]
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
# https://github.com/PyO3/rust-numpy/issues/223
|
|
6
|
+
[target.aarch64-apple-darwin]
|
|
7
|
+
rustflags = [
|
|
8
|
+
"-C", "link-arg=-undefined",
|
|
9
|
+
"-C", "link-arg=dynamic_lookup",
|
|
10
|
+
]
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
# This file is autogenerated by maturin v1.7.0
|
|
2
|
+
# To update, run
|
|
3
|
+
#
|
|
4
|
+
# maturin generate-ci github
|
|
5
|
+
#
|
|
6
|
+
name: CI
|
|
7
|
+
|
|
8
|
+
on:
|
|
9
|
+
push:
|
|
10
|
+
branches:
|
|
11
|
+
- main
|
|
12
|
+
- master
|
|
13
|
+
tags:
|
|
14
|
+
- '*'
|
|
15
|
+
pull_request:
|
|
16
|
+
workflow_dispatch:
|
|
17
|
+
|
|
18
|
+
permissions:
|
|
19
|
+
contents: read
|
|
20
|
+
|
|
21
|
+
jobs:
|
|
22
|
+
linux:
|
|
23
|
+
runs-on: ${{ matrix.platform.runner }}
|
|
24
|
+
strategy:
|
|
25
|
+
matrix:
|
|
26
|
+
platform:
|
|
27
|
+
- runner: ubuntu-latest
|
|
28
|
+
target: x86_64
|
|
29
|
+
- runner: ubuntu-latest
|
|
30
|
+
target: x86
|
|
31
|
+
- runner: ubuntu-latest
|
|
32
|
+
target: aarch64
|
|
33
|
+
- runner: ubuntu-latest
|
|
34
|
+
target: armv7
|
|
35
|
+
- runner: ubuntu-latest
|
|
36
|
+
target: s390x
|
|
37
|
+
- runner: ubuntu-latest
|
|
38
|
+
target: ppc64le
|
|
39
|
+
steps:
|
|
40
|
+
- uses: actions/checkout@v4
|
|
41
|
+
- uses: actions/setup-python@v5
|
|
42
|
+
with:
|
|
43
|
+
python-version: 3.x
|
|
44
|
+
- name: Build wheels
|
|
45
|
+
uses: PyO3/maturin-action@v1
|
|
46
|
+
with:
|
|
47
|
+
target: ${{ matrix.platform.target }}
|
|
48
|
+
args: --release --out dist
|
|
49
|
+
sccache: 'true'
|
|
50
|
+
manylinux: auto
|
|
51
|
+
- name: Upload wheels
|
|
52
|
+
uses: actions/upload-artifact@v4
|
|
53
|
+
with:
|
|
54
|
+
name: wheels-linux-${{ matrix.platform.target }}
|
|
55
|
+
path: dist
|
|
56
|
+
|
|
57
|
+
musllinux:
|
|
58
|
+
runs-on: ${{ matrix.platform.runner }}
|
|
59
|
+
strategy:
|
|
60
|
+
matrix:
|
|
61
|
+
platform:
|
|
62
|
+
- runner: ubuntu-latest
|
|
63
|
+
target: x86_64
|
|
64
|
+
- runner: ubuntu-latest
|
|
65
|
+
target: x86
|
|
66
|
+
- runner: ubuntu-latest
|
|
67
|
+
target: aarch64
|
|
68
|
+
- runner: ubuntu-latest
|
|
69
|
+
target: armv7
|
|
70
|
+
steps:
|
|
71
|
+
- uses: actions/checkout@v4
|
|
72
|
+
- uses: actions/setup-python@v5
|
|
73
|
+
with:
|
|
74
|
+
python-version: 3.x
|
|
75
|
+
- name: Build wheels
|
|
76
|
+
uses: PyO3/maturin-action@v1
|
|
77
|
+
with:
|
|
78
|
+
target: ${{ matrix.platform.target }}
|
|
79
|
+
args: --release --out dist
|
|
80
|
+
sccache: 'true'
|
|
81
|
+
manylinux: musllinux_1_2
|
|
82
|
+
- name: Upload wheels
|
|
83
|
+
uses: actions/upload-artifact@v4
|
|
84
|
+
with:
|
|
85
|
+
name: wheels-musllinux-${{ matrix.platform.target }}
|
|
86
|
+
path: dist
|
|
87
|
+
|
|
88
|
+
windows:
|
|
89
|
+
runs-on: ${{ matrix.platform.runner }}
|
|
90
|
+
strategy:
|
|
91
|
+
matrix:
|
|
92
|
+
platform:
|
|
93
|
+
- runner: windows-latest
|
|
94
|
+
target: x64
|
|
95
|
+
- runner: windows-latest
|
|
96
|
+
target: x86
|
|
97
|
+
steps:
|
|
98
|
+
- uses: actions/checkout@v4
|
|
99
|
+
- uses: actions/setup-python@v5
|
|
100
|
+
with:
|
|
101
|
+
python-version: 3.x
|
|
102
|
+
architecture: ${{ matrix.platform.target }}
|
|
103
|
+
- name: Build wheels
|
|
104
|
+
uses: PyO3/maturin-action@v1
|
|
105
|
+
with:
|
|
106
|
+
target: ${{ matrix.platform.target }}
|
|
107
|
+
args: --release --out dist
|
|
108
|
+
sccache: 'true'
|
|
109
|
+
- name: Upload wheels
|
|
110
|
+
uses: actions/upload-artifact@v4
|
|
111
|
+
with:
|
|
112
|
+
name: wheels-windows-${{ matrix.platform.target }}
|
|
113
|
+
path: dist
|
|
114
|
+
|
|
115
|
+
macos:
|
|
116
|
+
runs-on: ${{ matrix.platform.runner }}
|
|
117
|
+
strategy:
|
|
118
|
+
matrix:
|
|
119
|
+
platform:
|
|
120
|
+
- runner: macos-12
|
|
121
|
+
target: x86_64
|
|
122
|
+
- runner: macos-14
|
|
123
|
+
target: aarch64
|
|
124
|
+
steps:
|
|
125
|
+
- uses: actions/checkout@v4
|
|
126
|
+
- uses: actions/setup-python@v5
|
|
127
|
+
with:
|
|
128
|
+
python-version: 3.x
|
|
129
|
+
- name: Build wheels
|
|
130
|
+
uses: PyO3/maturin-action@v1
|
|
131
|
+
with:
|
|
132
|
+
target: ${{ matrix.platform.target }}
|
|
133
|
+
args: --release --out dist
|
|
134
|
+
sccache: 'true'
|
|
135
|
+
- name: Upload wheels
|
|
136
|
+
uses: actions/upload-artifact@v4
|
|
137
|
+
with:
|
|
138
|
+
name: wheels-macos-${{ matrix.platform.target }}
|
|
139
|
+
path: dist
|
|
140
|
+
|
|
141
|
+
sdist:
|
|
142
|
+
runs-on: ubuntu-latest
|
|
143
|
+
steps:
|
|
144
|
+
- uses: actions/checkout@v4
|
|
145
|
+
- name: Build sdist
|
|
146
|
+
uses: PyO3/maturin-action@v1
|
|
147
|
+
with:
|
|
148
|
+
command: sdist
|
|
149
|
+
args: --out dist
|
|
150
|
+
- name: Upload sdist
|
|
151
|
+
uses: actions/upload-artifact@v4
|
|
152
|
+
with:
|
|
153
|
+
name: wheels-sdist
|
|
154
|
+
path: dist
|
|
155
|
+
|
|
156
|
+
release:
|
|
157
|
+
name: Release
|
|
158
|
+
runs-on: ubuntu-latest
|
|
159
|
+
if: "startsWith(github.ref, 'refs/tags/')"
|
|
160
|
+
needs: [linux, musllinux, windows, macos, sdist]
|
|
161
|
+
permissions:
|
|
162
|
+
id-token: write
|
|
163
|
+
steps:
|
|
164
|
+
- uses: actions/download-artifact@v4
|
|
165
|
+
with:
|
|
166
|
+
name: wheels-sdist
|
|
167
|
+
path: dist
|
|
168
|
+
- name: Publish release distributions to PyPI
|
|
169
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
target/
|
|
@@ -0,0 +1,534 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ahash"
|
|
7
|
+
version = "0.8.11"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"cfg-if",
|
|
12
|
+
"once_cell",
|
|
13
|
+
"version_check",
|
|
14
|
+
"zerocopy",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[[package]]
|
|
18
|
+
name = "allocator-api2"
|
|
19
|
+
version = "0.2.18"
|
|
20
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
21
|
+
checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
|
|
22
|
+
|
|
23
|
+
[[package]]
|
|
24
|
+
name = "approx"
|
|
25
|
+
version = "0.5.1"
|
|
26
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
28
|
+
dependencies = [
|
|
29
|
+
"num-traits",
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "autocfg"
|
|
34
|
+
version = "1.3.0"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "bitflags"
|
|
40
|
+
version = "2.6.0"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "byteorder"
|
|
46
|
+
version = "1.5.0"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "cfg-if"
|
|
52
|
+
version = "1.0.0"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "earcutr"
|
|
58
|
+
version = "0.4.3"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "79127ed59a85d7687c409e9978547cffb7dc79675355ed22da6b66fd5f6ead01"
|
|
61
|
+
dependencies = [
|
|
62
|
+
"itertools",
|
|
63
|
+
"num-traits",
|
|
64
|
+
]
|
|
65
|
+
|
|
66
|
+
[[package]]
|
|
67
|
+
name = "either"
|
|
68
|
+
version = "1.13.0"
|
|
69
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
70
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
|
71
|
+
|
|
72
|
+
[[package]]
|
|
73
|
+
name = "float_next_after"
|
|
74
|
+
version = "1.0.0"
|
|
75
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
76
|
+
checksum = "8bf7cc16383c4b8d58b9905a8509f02926ce3058053c056376248d958c9df1e8"
|
|
77
|
+
|
|
78
|
+
[[package]]
|
|
79
|
+
name = "geo"
|
|
80
|
+
version = "0.28.0"
|
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
+
checksum = "f811f663912a69249fa620dcd2a005db7254529da2d8a0b23942e81f47084501"
|
|
83
|
+
dependencies = [
|
|
84
|
+
"earcutr",
|
|
85
|
+
"float_next_after",
|
|
86
|
+
"geo-types",
|
|
87
|
+
"geographiclib-rs",
|
|
88
|
+
"log",
|
|
89
|
+
"num-traits",
|
|
90
|
+
"robust",
|
|
91
|
+
"rstar",
|
|
92
|
+
"spade",
|
|
93
|
+
]
|
|
94
|
+
|
|
95
|
+
[[package]]
|
|
96
|
+
name = "geo-types"
|
|
97
|
+
version = "0.7.13"
|
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
+
checksum = "9ff16065e5720f376fbced200a5ae0f47ace85fd70b7e54269790281353b6d61"
|
|
100
|
+
dependencies = [
|
|
101
|
+
"approx",
|
|
102
|
+
"num-traits",
|
|
103
|
+
"rstar",
|
|
104
|
+
"serde",
|
|
105
|
+
]
|
|
106
|
+
|
|
107
|
+
[[package]]
|
|
108
|
+
name = "geographiclib-rs"
|
|
109
|
+
version = "0.2.4"
|
|
110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
111
|
+
checksum = "e6e5ed84f8089c70234b0a8e0aedb6dc733671612ddc0d37c6066052f9781960"
|
|
112
|
+
dependencies = [
|
|
113
|
+
"libm",
|
|
114
|
+
]
|
|
115
|
+
|
|
116
|
+
[[package]]
|
|
117
|
+
name = "geohash"
|
|
118
|
+
version = "0.13.1"
|
|
119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
120
|
+
checksum = "0fb94b1a65401d6cbf22958a9040aa364812c26674f841bee538b12c135db1e6"
|
|
121
|
+
dependencies = [
|
|
122
|
+
"geo-types",
|
|
123
|
+
"libm",
|
|
124
|
+
]
|
|
125
|
+
|
|
126
|
+
[[package]]
|
|
127
|
+
name = "hash32"
|
|
128
|
+
version = "0.3.1"
|
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
+
checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606"
|
|
131
|
+
dependencies = [
|
|
132
|
+
"byteorder",
|
|
133
|
+
]
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "hashbrown"
|
|
137
|
+
version = "0.14.5"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
140
|
+
dependencies = [
|
|
141
|
+
"ahash",
|
|
142
|
+
"allocator-api2",
|
|
143
|
+
]
|
|
144
|
+
|
|
145
|
+
[[package]]
|
|
146
|
+
name = "heapless"
|
|
147
|
+
version = "0.8.0"
|
|
148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
149
|
+
checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
|
|
150
|
+
dependencies = [
|
|
151
|
+
"hash32",
|
|
152
|
+
"stable_deref_trait",
|
|
153
|
+
]
|
|
154
|
+
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "indoc"
|
|
157
|
+
version = "1.0.9"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306"
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "itertools"
|
|
163
|
+
version = "0.11.0"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
|
|
166
|
+
dependencies = [
|
|
167
|
+
"either",
|
|
168
|
+
]
|
|
169
|
+
|
|
170
|
+
[[package]]
|
|
171
|
+
name = "libc"
|
|
172
|
+
version = "0.2.155"
|
|
173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
+
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
|
|
175
|
+
|
|
176
|
+
[[package]]
|
|
177
|
+
name = "libm"
|
|
178
|
+
version = "0.2.8"
|
|
179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
+
checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
|
|
181
|
+
|
|
182
|
+
[[package]]
|
|
183
|
+
name = "lock_api"
|
|
184
|
+
version = "0.4.12"
|
|
185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
186
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
|
187
|
+
dependencies = [
|
|
188
|
+
"autocfg",
|
|
189
|
+
"scopeguard",
|
|
190
|
+
]
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "log"
|
|
194
|
+
version = "0.4.22"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "num-traits"
|
|
200
|
+
version = "0.2.19"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
203
|
+
dependencies = [
|
|
204
|
+
"autocfg",
|
|
205
|
+
"libm",
|
|
206
|
+
]
|
|
207
|
+
|
|
208
|
+
[[package]]
|
|
209
|
+
name = "once_cell"
|
|
210
|
+
version = "1.19.0"
|
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "parking_lot"
|
|
216
|
+
version = "0.12.3"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
|
219
|
+
dependencies = [
|
|
220
|
+
"lock_api",
|
|
221
|
+
"parking_lot_core",
|
|
222
|
+
]
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "parking_lot_core"
|
|
226
|
+
version = "0.9.10"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
229
|
+
dependencies = [
|
|
230
|
+
"cfg-if",
|
|
231
|
+
"libc",
|
|
232
|
+
"redox_syscall",
|
|
233
|
+
"smallvec",
|
|
234
|
+
"windows-targets",
|
|
235
|
+
]
|
|
236
|
+
|
|
237
|
+
[[package]]
|
|
238
|
+
name = "proc-macro2"
|
|
239
|
+
version = "1.0.86"
|
|
240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
241
|
+
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
|
|
242
|
+
dependencies = [
|
|
243
|
+
"unicode-ident",
|
|
244
|
+
]
|
|
245
|
+
|
|
246
|
+
[[package]]
|
|
247
|
+
name = "pyo3"
|
|
248
|
+
version = "0.16.6"
|
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
+
checksum = "0220c44442c9b239dd4357aa856ac468a4f5e1f0df19ddb89b2522952eb4c6ca"
|
|
251
|
+
dependencies = [
|
|
252
|
+
"cfg-if",
|
|
253
|
+
"indoc",
|
|
254
|
+
"libc",
|
|
255
|
+
"parking_lot",
|
|
256
|
+
"pyo3-build-config",
|
|
257
|
+
"pyo3-ffi",
|
|
258
|
+
"pyo3-macros",
|
|
259
|
+
"unindent",
|
|
260
|
+
]
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "pyo3-build-config"
|
|
264
|
+
version = "0.16.6"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "9c819d397859445928609d0ec5afc2da5204e0d0f73d6bf9e153b04e83c9cdc2"
|
|
267
|
+
dependencies = [
|
|
268
|
+
"once_cell",
|
|
269
|
+
"target-lexicon",
|
|
270
|
+
]
|
|
271
|
+
|
|
272
|
+
[[package]]
|
|
273
|
+
name = "pyo3-ffi"
|
|
274
|
+
version = "0.16.6"
|
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
276
|
+
checksum = "ca882703ab55f54702d7bfe1189b41b0af10272389f04cae38fe4cd56c65f75f"
|
|
277
|
+
dependencies = [
|
|
278
|
+
"libc",
|
|
279
|
+
"pyo3-build-config",
|
|
280
|
+
]
|
|
281
|
+
|
|
282
|
+
[[package]]
|
|
283
|
+
name = "pyo3-macros"
|
|
284
|
+
version = "0.16.6"
|
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
286
|
+
checksum = "568749402955ad7be7bad9a09b8593851cd36e549ac90bfd44079cea500f3f21"
|
|
287
|
+
dependencies = [
|
|
288
|
+
"proc-macro2",
|
|
289
|
+
"pyo3-macros-backend",
|
|
290
|
+
"quote",
|
|
291
|
+
"syn 1.0.109",
|
|
292
|
+
]
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "pyo3-macros-backend"
|
|
296
|
+
version = "0.16.6"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "611f64e82d98f447787e82b8e7b0ebc681e1eb78fc1252668b2c605ffb4e1eb8"
|
|
299
|
+
dependencies = [
|
|
300
|
+
"proc-macro2",
|
|
301
|
+
"quote",
|
|
302
|
+
"syn 1.0.109",
|
|
303
|
+
]
|
|
304
|
+
|
|
305
|
+
[[package]]
|
|
306
|
+
name = "queue"
|
|
307
|
+
version = "0.3.1"
|
|
308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
309
|
+
checksum = "6ff7e7fd62294a081720771513c1c1c995468a5d4e771a2928e423b88682ce48"
|
|
310
|
+
|
|
311
|
+
[[package]]
|
|
312
|
+
name = "quote"
|
|
313
|
+
version = "1.0.36"
|
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
315
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
|
316
|
+
dependencies = [
|
|
317
|
+
"proc-macro2",
|
|
318
|
+
]
|
|
319
|
+
|
|
320
|
+
[[package]]
|
|
321
|
+
name = "redox_syscall"
|
|
322
|
+
version = "0.5.3"
|
|
323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
324
|
+
checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
|
|
325
|
+
dependencies = [
|
|
326
|
+
"bitflags",
|
|
327
|
+
]
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "robust"
|
|
331
|
+
version = "1.1.0"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "cbf4a6aa5f6d6888f39e980649f3ad6b666acdce1d78e95b8a2cb076e687ae30"
|
|
334
|
+
|
|
335
|
+
[[package]]
|
|
336
|
+
name = "rstar"
|
|
337
|
+
version = "0.12.0"
|
|
338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
+
checksum = "133315eb94c7b1e8d0cb097e5a710d850263372fd028fff18969de708afc7008"
|
|
340
|
+
dependencies = [
|
|
341
|
+
"heapless",
|
|
342
|
+
"num-traits",
|
|
343
|
+
"smallvec",
|
|
344
|
+
]
|
|
345
|
+
|
|
346
|
+
[[package]]
|
|
347
|
+
name = "rusty-polygon-geohasher"
|
|
348
|
+
version = "0.1.0"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"geo",
|
|
351
|
+
"geohash",
|
|
352
|
+
"pyo3",
|
|
353
|
+
"queue",
|
|
354
|
+
]
|
|
355
|
+
|
|
356
|
+
[[package]]
|
|
357
|
+
name = "scopeguard"
|
|
358
|
+
version = "1.2.0"
|
|
359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
360
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "serde"
|
|
364
|
+
version = "1.0.204"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"
|
|
367
|
+
dependencies = [
|
|
368
|
+
"serde_derive",
|
|
369
|
+
]
|
|
370
|
+
|
|
371
|
+
[[package]]
|
|
372
|
+
name = "serde_derive"
|
|
373
|
+
version = "1.0.204"
|
|
374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
+
checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
|
|
376
|
+
dependencies = [
|
|
377
|
+
"proc-macro2",
|
|
378
|
+
"quote",
|
|
379
|
+
"syn 2.0.72",
|
|
380
|
+
]
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "smallvec"
|
|
384
|
+
version = "1.13.2"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
387
|
+
|
|
388
|
+
[[package]]
|
|
389
|
+
name = "spade"
|
|
390
|
+
version = "2.10.0"
|
|
391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
+
checksum = "7d676a3ce6cfd1e455199fefcf82db082f970872ce017df660f076a4e07a0d64"
|
|
393
|
+
dependencies = [
|
|
394
|
+
"hashbrown",
|
|
395
|
+
"num-traits",
|
|
396
|
+
"robust",
|
|
397
|
+
"smallvec",
|
|
398
|
+
]
|
|
399
|
+
|
|
400
|
+
[[package]]
|
|
401
|
+
name = "stable_deref_trait"
|
|
402
|
+
version = "1.2.0"
|
|
403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
404
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
405
|
+
|
|
406
|
+
[[package]]
|
|
407
|
+
name = "syn"
|
|
408
|
+
version = "1.0.109"
|
|
409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
411
|
+
dependencies = [
|
|
412
|
+
"proc-macro2",
|
|
413
|
+
"quote",
|
|
414
|
+
"unicode-ident",
|
|
415
|
+
]
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "syn"
|
|
419
|
+
version = "2.0.72"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af"
|
|
422
|
+
dependencies = [
|
|
423
|
+
"proc-macro2",
|
|
424
|
+
"quote",
|
|
425
|
+
"unicode-ident",
|
|
426
|
+
]
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "target-lexicon"
|
|
430
|
+
version = "0.12.15"
|
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
+
checksum = "4873307b7c257eddcb50c9bedf158eb669578359fb28428bef438fec8e6ba7c2"
|
|
433
|
+
|
|
434
|
+
[[package]]
|
|
435
|
+
name = "unicode-ident"
|
|
436
|
+
version = "1.0.12"
|
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
439
|
+
|
|
440
|
+
[[package]]
|
|
441
|
+
name = "unindent"
|
|
442
|
+
version = "0.1.11"
|
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
+
checksum = "e1766d682d402817b5ac4490b3c3002d91dfa0d22812f341609f97b08757359c"
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "version_check"
|
|
448
|
+
version = "0.9.5"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "windows-targets"
|
|
454
|
+
version = "0.52.6"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
457
|
+
dependencies = [
|
|
458
|
+
"windows_aarch64_gnullvm",
|
|
459
|
+
"windows_aarch64_msvc",
|
|
460
|
+
"windows_i686_gnu",
|
|
461
|
+
"windows_i686_gnullvm",
|
|
462
|
+
"windows_i686_msvc",
|
|
463
|
+
"windows_x86_64_gnu",
|
|
464
|
+
"windows_x86_64_gnullvm",
|
|
465
|
+
"windows_x86_64_msvc",
|
|
466
|
+
]
|
|
467
|
+
|
|
468
|
+
[[package]]
|
|
469
|
+
name = "windows_aarch64_gnullvm"
|
|
470
|
+
version = "0.52.6"
|
|
471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
473
|
+
|
|
474
|
+
[[package]]
|
|
475
|
+
name = "windows_aarch64_msvc"
|
|
476
|
+
version = "0.52.6"
|
|
477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
478
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
479
|
+
|
|
480
|
+
[[package]]
|
|
481
|
+
name = "windows_i686_gnu"
|
|
482
|
+
version = "0.52.6"
|
|
483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
484
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
485
|
+
|
|
486
|
+
[[package]]
|
|
487
|
+
name = "windows_i686_gnullvm"
|
|
488
|
+
version = "0.52.6"
|
|
489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
491
|
+
|
|
492
|
+
[[package]]
|
|
493
|
+
name = "windows_i686_msvc"
|
|
494
|
+
version = "0.52.6"
|
|
495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
497
|
+
|
|
498
|
+
[[package]]
|
|
499
|
+
name = "windows_x86_64_gnu"
|
|
500
|
+
version = "0.52.6"
|
|
501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
502
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "windows_x86_64_gnullvm"
|
|
506
|
+
version = "0.52.6"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "windows_x86_64_msvc"
|
|
512
|
+
version = "0.52.6"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
515
|
+
|
|
516
|
+
[[package]]
|
|
517
|
+
name = "zerocopy"
|
|
518
|
+
version = "0.7.35"
|
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
|
521
|
+
dependencies = [
|
|
522
|
+
"zerocopy-derive",
|
|
523
|
+
]
|
|
524
|
+
|
|
525
|
+
[[package]]
|
|
526
|
+
name = "zerocopy-derive"
|
|
527
|
+
version = "0.7.35"
|
|
528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
530
|
+
dependencies = [
|
|
531
|
+
"proc-macro2",
|
|
532
|
+
"quote",
|
|
533
|
+
"syn 2.0.72",
|
|
534
|
+
]
|