Skip to content

Commit

Permalink
geocode-csv v1.4.0: Add --include-libpostal flag
Browse files Browse the repository at this point in the history
  • Loading branch information
emk committed Mar 26, 2024
1 parent 383b590 commit dba6202
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

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).

## [1.4.0] - 2024-04-26

### Added

- Added `--include-libpostal` to include `libpostal` output alongside another geocoder's output.

## [1.3.12] - 2023-08-26

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 32 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "geocode-csv"
version = "1.3.12"
version = "1.4.0"
authors = ["Eric Kidd <[email protected]>"]
edition = "2018"

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

[dev-dependencies]
cli_test_dir = "0.1.7"
reqwest = { version = "0.11.18", default-features = false, features = ["blocking"] }
reqwest = { version = "0.11.18", default-features = false, features = [
"blocking",
] }

[dependencies]
anyhow = { version = "1.0.40", features = ["backtrace"] }
async-trait = "0.1.52"
axum = { version = "0.6.19", default-features = false, features = ["http1", "tokio", "tower-log", "tracing", "headers", "json"] }
axum = { version = "0.6.19", default-features = false, features = [
"http1",
"tokio",
"tower-log",
"tracing",
"headers",
"json",
] }
bb8 = "0.8.0"
bb8-redis = "0.13.1"
bigtable_rs = "0.2.5"
Expand All @@ -26,15 +35,21 @@ clap = { version = "4.3.0", features = ["derive", "wrap_help"] }
csv = "1.0.7"
futures = "0.3.4"
hyper = { version = "0.14.7", features = ["client", "http2", "stream"] }
hyper-rustls = { version = "0.24.1", features = ["rustls-native-certs", "http2"] }
hyper-rustls = { version = "0.24.1", features = [
"rustls-native-certs",
"http2",
] }
leaky-bucket = "1.0.1"
libpostal-rust = { version = "0.1.1", path = "crates/libpostal-rust" }
# These need to be updated alongside `opinionated_metrics` and its supporting
# crates.
metrics = "0.20.1"
metrics-util = "0.14.0"
opinionated_metrics = { version = "0.2.0", path = "crates/opinionated_metrics" }
redis = { version = "0.23.2", default-features = false, features = ["aio", "tokio-comp"] }
redis = { version = "0.23.2", default-features = false, features = [
"aio",
"tokio-comp",
] }
serde = { version = "1.0.92", features = ["derive"] }
# Last version of `serde_derive` that can be built from source. See
# https://github.com/serde-rs/serde/issues/2538.
Expand All @@ -45,7 +60,12 @@ serde_json = { version = "1.0.39", features = ["preserve_order"] }
sha2 = "0.10.1"
strum = "0.25.0"
strum_macros = "0.25.2"
tokio = { version = "1.6.0", features = ["io-util", "macros", "rt-multi-thread", "sync"] }
tokio = { version = "1.6.0", features = [
"io-util",
"macros",
"rt-multi-thread",
"sync",
] }
tokio-stream = "0.1.6"
tracing = "0.1.29"
tracing-subscriber = { version = "0.3.7", features = ["env-filter"] }
Expand All @@ -59,4 +79,9 @@ jemallocator = { version = "0.5.4", features = ["profiling"], optional = true }
# split-debuginfo = "off"

[workspace]
members = ["crates/libpostal-sys", "crates/libpostal-rust", "crates/metrics-exporter-newrelic", "crates/opinionated_metrics"]
members = [
"crates/libpostal-sys",
"crates/libpostal-rust",
"crates/metrics-exporter-newrelic",
"crates/opinionated_metrics",
]

0 comments on commit dba6202

Please sign in to comment.