summaryrefslogtreecommitdiff
path: root/crates/tor-geoip/Cargo.toml
blob: 44383a29c30e2756ea1b691d4293867a799f11c6 (plain)
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
[package]
name = "tor-geoip"
version = "0.1.1"
authors = ["The Tor Project, Inc.", "eta <[email protected]>"]
edition = "2021"
rust-version = "1.65"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "A crate to parse C Tor GeoIP CSV files."
keywords = ["tor", "arti"]
readme = "README.md"
categories = ["parser-implementations", "network-programming"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"

[dependencies]
derive_more = "0.99.3"
once_cell = "1.18"
rangemap = "1.3"
thiserror = "1"
tor-error = { path = "../tor-error", version = "0.5.3" }

[features]
embedded-db = []
default = ["embedded-db"]
full = ["tor-error/full", "embedded-db"]