-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (31 loc) · 917 Bytes
/
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
[package]
name = "nori"
version = "0.1.0"
authors = ["Johannes Hofmann <[email protected]>"]
edition = "2018"
readme = "README.md"
repository = "https://github.com/b-r-u/nori"
homepage = "https://github.com/b-r-u/nori"
description = """
Estimate average daily traffic on a road network by sampling a distribution of shortest paths.
"""
categories = ["science"]
keywords = ["traffic", "road", "osrm", "openstreetmap"]
license = "MIT OR Apache-2.0"
[dependencies]
anyhow = "1.0"
bincode = "1.3"
clap = "2.33"
csv = "1.1"
geojson = { version = "0.20", default-features = false }
geomatic = "0.1"
kdtree = "0.6.0"
osmpbf = "0.2"
osrmreader = "0.1"
palette = { version = "0.5", features = ["std"], default-features = false }
rand = "0.7"
reqwest = { version = "0.10", features = ["blocking"], default-features = false }
rstar = "0.8.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tiny-skia = "0.2"