-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
41 lines (33 loc) · 1.02 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
[package]
name = "ipcap"
version = "0.1.7"
description = "🌍 A CLI & library for decoding IP addresses into state, postal code, country, coordinates, etc without internet access."
license = "MIT"
keywords = ["ip", "geolocation", "geoip", "ipcap"]
repository = "https://github.com/wiseaidev/ipcap"
documentation = "https://docs.rs/ipcap"
authors = ["Mahmoud Harmouch <[email protected]>"]
exclude = ["/data"]
build = "build.rs"
edition = "2021"
[badges]
maintenance = { status = "passively-maintained" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.4.12", features = ["derive"] , optional = true }
dirs = "5.0.1"
once_cell = "1.19.0"
[build-dependencies]
ipcap-codegen = { path = "ipcap-codegen", version = "0.1.0" }
[dev-dependencies]
bump2version = "0.1.3"
[features]
cli = ["clap"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[profile.release]
codegen-units = 1
opt-level = "z"
lto = "thin"
strip = "symbols"