-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (33 loc) · 982 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
31
32
33
34
35
36
37
38
39
40
41
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
resolver = "2"
members = ["./japan-geoid-*"]
[workspace.package]
version = "0.4.3"
edition = "2021"
authors = [
"Taku Fukada <[email protected]>",
]
description = "Calculates geoid heights for Japan using GSI's geoid model."
license = "MIT"
repository = "https://github.com/ciscorn/japan-geoid"
categories = ["science", "science::geo"]
[package]
name = "japan-geoid"
version.workspace = true
edition.workspace = true
categories.workspace = true
authors.workspace = true
description.workspace = true
license = "MIT"
repository.workspace = true
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
lz4_flex = { version = "0.11.3", default-features = false }
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2.93"
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen-test = "0.3.43"
[profile.dev.package."*"]
opt-level = 1