13 lines
273 B
TOML
13 lines
273 B
TOML
[package]
|
|
name = "importer"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
osmpbf = "0.3" # Pure Rust PBF parser, easier to build than osmium (C++ bindings)
|
|
scylla = "0.12"
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
anyhow = "1.0"
|
|
memmap2 = "0.9"
|
|
dotenv = "0.15"
|