-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (41 loc) · 1.13 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
[package]
name = "s2-tilejson"
version = "0.5.0"
edition = "2021"
authors = ["Craig O'Connor <[email protected]>"]
description = "Backwards compatible JSON format for describing s2 map tilesets."
documentation = "https://docs.rs/s2-tilejson"
homepage = "https://github.com/OpenS2/s2-tilejson"
repository = "https://github.com/OpenS2/s2-tilejson"
readme = "README.md"
categories = ["no-std", "algorithms"]
keywords = ["s2-tilejson", "earcut", "gis", "low-cost-code"]
license = "MIT"
# Include only specific files and directories
exclude = [
"/assets",
"/benchmarks",
"/coverage",
"/dist",
"/docs",
"/test",
"/tools",
"/src",
".github",
".helix",
"bin/dummy.rs",
]
[[bin]]
name = "dummy"
path = "bin/dummy.rs"
[lib]
name = "s2_tilejson"
path = "rust/lib.rs"
bench = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
[dev-dependencies]
[profile.bench]
opt-level = "z"