-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (26 loc) · 821 Bytes
/
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
[package]
name = "ostn15_phf"
description = "A PHF map of the OSTN15 grid shifts for use in transforming ETRS89 grid coordinates to OSGB36"
repository = "https://github.com/urschrei/OSTN15_PHF"
documentation = "https://urschrei.github.io/ostn15_phf/"
keywords = ["Geo", "ETRS89", "OSGB36", "OSTN02", "OSTN15"]
version = "1.2.3"
authors = ["Stephan Hügel <urschrei@gmail.com>"]
license = "MIT"
readme = "README.md"
edition = "2021"
# UNCOMMENT THE LINES BELOW TO RE-GENERATE THE SHIFTS FROM SQLITE
# build = "generate_shifts.rs"
# [build-dependencies]
# phf_codegen = "=0.11.1"
# rusqlite = { version = "0.28.0", features = ["bundled-full"] }
# END OF REGEN LOGIC
[dependencies]
phf = "=0.11.1"
libc = "0.2.140"
[lib]
name = "ostn15_phf"
crate-type = ["rlib", "cdylib"]
[profile.release]
lto = true
codegen-units = 1