blob: 251fa72185e1f2607c5c5698c4ed55d9ce1a0037 (
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
|
[package]
name = "tor-geoip"
version = "0.19.0"
authors = ["The Tor Project, Inc.", "eta <[email protected]>"]
edition = "2021"
rust-version = "1.70"
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"
[features]
embedded-db = []
default = ["embedded-db"]
full = ["embedded-db"]
|