-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
45 lines (36 loc) · 863 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
42
43
44
45
[package]
name = "geoip2"
version = "0.1.7"
authors = ["IncSW <dev@incsw.in>"]
description = "Library for reading MaxMind DB format used by GeoIP2 and GeoLite2"
readme = "README.md"
keywords = ["MaxMind", "GeoIP2", "GeoIP", "geolocation", "ip"]
categories = ["database", "network-programming"]
homepage = "https://github.com/IncSW/geoip2-rs"
documentation = "https://docs.rs/geoip2"
repository = "https://github.com/IncSW/geoip2-rs"
license = "MIT"
edition = "2021"
exclude = ["testdata"]
[features]
default = []
unsafe-str = []
[dependencies]
geoip2-codegen = "0.1.5"
[workspace]
members = [".", "codegen"]
[patch.crates-io]
geoip2-codegen = { path = "codegen" }
[dev-dependencies]
maxminddb = "0.24.0"
[profile.release]
lto = "fat"
codegen-units = 1
opt-level = 3
panic = "abort"
[[test]]
name = "geoip"
[[test]]
name = "dbip"
[[bench]]
name = "geoip"