blob: 4369955f2243a4a285bdfc2072096b5f27b8ec46 (
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.2"
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.4" }
[features]
embedded-db = []
default = ["embedded-db"]
full = ["tor-error/full", "embedded-db"]
|