-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
42 lines (37 loc) · 1.14 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
[package]
name = "open-vector-tile"
version = "1.2.1"
edition = "2021"
authors = ["Craig O'Connor <[email protected]>"]
description = "This library reads/writes The Open Vector Tiles 1.0 Specification"
documentation = "https://docs.rs/open-vector-tile"
homepage = "https://github.com/OpenS2/open-vector-tile"
repository = "https://github.com/OpenS2/open-vector-tile"
readme = "README.md"
categories = ["encoding", "wasm", "embedded", "no-std"]
keywords = ["open", "vector", "tile", "gis", "low-cost-code"]
license = "MIT"
# Include only specific files and directories
# include = ["Cargo.toml", "Cargo.lock", "README.md", "LICENSE"]
exclude = [
"/assets",
"/benchmarks",
"/docs",
"/tests",
"/tools",
"/src",
]
[lib]
name = "ovtile"
path = "rust/lib.rs"
bench = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
pbf = "0.3"
libm = "0.2"
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
[dev-dependencies]
# tarpaulin = "*"
[profile.bench]
opt-level = 3