-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
74 lines (67 loc) · 1.52 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
name = "wof"
version = "0.2.0"
authors = ["Jones Magloire @Joxit"]
description = "The Who's On First rust library and command line."
edition = "2018"
license = "MIT"
autobins = false
repository = "https://github.com/Joxit/wof-cli"
homepage = "https://github.com/Joxit/wof-cli"
documentation = "https://docs.rs/wof/"
readme = "README.md"
keywords = ["cli"]
categories = [
"command-line-utilities",
"database-implementations",
"data-structures",
"parser-implementations",
]
[[bin]]
name = "wof"
path = "src/main.rs"
required-features = ["cli"]
[dependencies]
json = "^0.12.2"
walkdir = "^2.3.1"
regex = "^1.3.3"
libc = "^0.2.67"
shapefile = "^0.5.0"
md5 = "^0.7.0"
postgres = "^0.19.3"
lazy_static = "^1.4.0"
which = { version = "^4.4.2", optional = true }
tar = { version = "^0.4.26", optional = true }
flate2 = { version = "^1.0.13", optional = true }
attohttpc = { version = "^0.26.1", optional = true }
chrono = { version = "^0.4.10", optional = true }
clap = { version = "^4.4", features = ["derive", "env"], optional = true }
clap_complete = { version = "^4.4", optional = true }
[dependencies.gdal]
version = "^0.16"
features = ["bindgen"]
optional = true
[dependencies.log]
version = "^0.4.8"
features = ["std"]
optional = true
[dependencies.git2]
version = "^0.18"
features = ["vendored-openssl"]
optional = true
[dependencies.rusqlite]
version = "0.29.0"
features = ["bundled"]
[features]
cli = [
"which",
"tar",
"flate2",
"clap",
"clap_complete",
"attohttpc",
"chrono",
"log",
"git2",
]
with-gdal = ["gdal"]