osm-git

A WIP POC based on the idea from https://blog.andygol.co.ua/en/2023/05/07/osm-2-0-api-using-git/
git clone git://archive.git.mtrnord.blog/MTRNord/osm-git.git
Log | Files | Refs | LICENSE

Cargo.toml (857B)


      1 [package]
      2 name = "osm-git"
      3 version = "0.1.0"
      4 edition = "2021"
      5 
      6 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
      7 
      8 [dependencies]
      9 bytes = "1.4.0"
     10 clap = { version = "4.3.0", features = ["derive"] }
     11 color-eyre = "0.6.2"
     12 flate2 = { version = "1.0.26" }
     13 git2 = "0.17.1"
     14 memmap2 = "0.6.1"
     15 quick-xml = { version = "0.28.2", features = ["async-tokio", "encoding", "escape-html", "overlapped-lists"] }
     16 reqwest = { version = "0.11.18", default-features = false, features = ["rustls-tls", "gzip", "stream", "trust-dns"] }
     17 serde = { version = "1.0.163", features = ["derive"] }
     18 serde_yaml = "0.9.21"
     19 time = { version = "0.3.21", features = ["formatting", "parsing"] }
     20 tokio = { version = "1.28.1", features = ["full"] }
     21 tracing = "0.1.37"
     22 tracing-subscriber = "0.3.17"
     23 zstd = { version = "0.12.3", features = ["zstdmt"] }