Skip to content

Commit dba6202

Browse files
committed
geocode-csv v1.4.0: Add --include-libpostal flag
1 parent 383b590 commit dba6202

File tree

3 files changed

+39
-8
lines changed

3 files changed

+39
-8
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.4.0] - 2024-04-26
8+
9+
### Added
10+
11+
- Added `--include-libpostal` to include `libpostal` output alongside another geocoder's output.
12+
713
## [1.3.12] - 2023-08-26
814

915
### Fixed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+32-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "geocode-csv"
3-
version = "1.3.12"
3+
version = "1.4.0"
44
authors = ["Eric Kidd <[email protected]>"]
55
edition = "2018"
66

@@ -12,12 +12,21 @@ documentation = "https://github.com/faradayio/geocode-csv"
1212

1313
[dev-dependencies]
1414
cli_test_dir = "0.1.7"
15-
reqwest = { version = "0.11.18", default-features = false, features = ["blocking"] }
15+
reqwest = { version = "0.11.18", default-features = false, features = [
16+
"blocking",
17+
] }
1618

1719
[dependencies]
1820
anyhow = { version = "1.0.40", features = ["backtrace"] }
1921
async-trait = "0.1.52"
20-
axum = { version = "0.6.19", default-features = false, features = ["http1", "tokio", "tower-log", "tracing", "headers", "json"] }
22+
axum = { version = "0.6.19", default-features = false, features = [
23+
"http1",
24+
"tokio",
25+
"tower-log",
26+
"tracing",
27+
"headers",
28+
"json",
29+
] }
2130
bb8 = "0.8.0"
2231
bb8-redis = "0.13.1"
2332
bigtable_rs = "0.2.5"
@@ -26,15 +35,21 @@ clap = { version = "4.3.0", features = ["derive", "wrap_help"] }
2635
csv = "1.0.7"
2736
futures = "0.3.4"
2837
hyper = { version = "0.14.7", features = ["client", "http2", "stream"] }
29-
hyper-rustls = { version = "0.24.1", features = ["rustls-native-certs", "http2"] }
38+
hyper-rustls = { version = "0.24.1", features = [
39+
"rustls-native-certs",
40+
"http2",
41+
] }
3042
leaky-bucket = "1.0.1"
3143
libpostal-rust = { version = "0.1.1", path = "crates/libpostal-rust" }
3244
# These need to be updated alongside `opinionated_metrics` and its supporting
3345
# crates.
3446
metrics = "0.20.1"
3547
metrics-util = "0.14.0"
3648
opinionated_metrics = { version = "0.2.0", path = "crates/opinionated_metrics" }
37-
redis = { version = "0.23.2", default-features = false, features = ["aio", "tokio-comp"] }
49+
redis = { version = "0.23.2", default-features = false, features = [
50+
"aio",
51+
"tokio-comp",
52+
] }
3853
serde = { version = "1.0.92", features = ["derive"] }
3954
# Last version of `serde_derive` that can be built from source. See
4055
# https://github.com/serde-rs/serde/issues/2538.
@@ -45,7 +60,12 @@ serde_json = { version = "1.0.39", features = ["preserve_order"] }
4560
sha2 = "0.10.1"
4661
strum = "0.25.0"
4762
strum_macros = "0.25.2"
48-
tokio = { version = "1.6.0", features = ["io-util", "macros", "rt-multi-thread", "sync"] }
63+
tokio = { version = "1.6.0", features = [
64+
"io-util",
65+
"macros",
66+
"rt-multi-thread",
67+
"sync",
68+
] }
4969
tokio-stream = "0.1.6"
5070
tracing = "0.1.29"
5171
tracing-subscriber = { version = "0.3.7", features = ["env-filter"] }
@@ -59,4 +79,9 @@ jemallocator = { version = "0.5.4", features = ["profiling"], optional = true }
5979
# split-debuginfo = "off"
6080

6181
[workspace]
62-
members = ["crates/libpostal-sys", "crates/libpostal-rust", "crates/metrics-exporter-newrelic", "crates/opinionated_metrics"]
82+
members = [
83+
"crates/libpostal-sys",
84+
"crates/libpostal-rust",
85+
"crates/metrics-exporter-newrelic",
86+
"crates/opinionated_metrics",
87+
]

0 commit comments

Comments
 (0)