-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
55 lines (42 loc) · 1.35 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
51
52
53
54
55
[package]
description = "Fast convert longitude,latitude to timezone name."
documentation = "https://docs.rs/tzf-rs"
edition = "2021"
homepage = "https://github.com/ringsaturn/tzf-rs"
keywords = ["timezone", "geo"]
license = "MIT"
name = "tzf-rs"
readme = "README.md"
repository = "https://github.com/ringsaturn/tzf-rs"
version = "0.4.9"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
bytes = "1"
clap = {version = "4", features = ["color", "help", "usage", "derive"], optional = true}
prost = "0.13"
rand = "0.8.5"
# tzf-rel = { git = "https://github.com/ringsaturn/tzf-rel", tag = "v0.0.2022-f5"}
tzf-rel = "0.0.2024-b"
# geometry-rs = { git = "https://github.com/ringsaturn/geometry-rs", tag = "v0.1.0"}
geometry-rs = "0.2.1"
[dev-dependencies]
lazy_static = "1.5.0"
criterion = {version = "0.5", features = ["html_reports"]}
# cities-json = { git = "https://github.com/ringsaturn/go-cities.json", rev = "38a818ded6dcd1759e4633a36502b693c8b14858" }
cities-json = "0"
[features]
default = ["clap"]
[[bin]]
name = "tzf"
required-features = ["clap"]
doc = false
[[bench]]
harness = false
name = "finders"
[build-dependencies]
prost-build = "0.13.3"
[profile.bench]
lto = true
[target.'cfg(not(target_env = "msvc"))'.dev-dependencies]
pprof = {version = "0.13", features = ["flamegraph"]}