-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (43 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
47
48
49
50
[package]
name = "proj4wkt"
version = "0.1.0"
edition = "2021"
rust-version = "1.66"
description = "Parse WKT to Proj strings"
readme = "./README.md"
keywords = ["gis", "proj", "projection", "geography", "geospatial"]
authors = ["David Marteau <[email protected]>"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/3liz/proj4wkt/"
repository = "https://github.com/3liz/proj4wkt/"
documentation = "https://docs.rs/proj4wkt/"
exclude = [
"js/*",
"Makefile.toml",
"index.html",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
thiserror = "1.0"
nom = "7.1"
log = { version = "0.4", optional = true }
[dev-dependencies]
approx = "0.5"
env_logger = "0.10"
clap = { version = "4", features=["derive"] }
log = "0.4"
[profile.release]
lto = true
codegen-units = 1
[lib]
crate_type = ["cdylib", "rlib"]
[features]
logging = ["log"]
wasm-strict = []
proj4js-compat = []
[target.wasm32-unknown-unknown.dependencies]
wasm-bindgen = "0.2"
js-sys = "0.3"
web-sys = { version = "0.3", features = ["console"] }
wee_alloc = "0.4"
console_log = "1.0"