Create most naive starting solution (#22)

This commit is contained in:
Patrick Stevens
2023-06-04 16:19:07 +01:00
committed by GitHub
parent 9ce3a98890
commit 8b5213e262
11 changed files with 274 additions and 159 deletions

13
haversine-app/Cargo.toml Normal file
View File

@@ -0,0 +1,13 @@
[package]
name = "haversine-app"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.3.1", features = [ "derive" ] }
haversine = { path = "../haversine" }
json = { path = "../json" }
byteorder = "1.4.3"
utf8-read = "0.4.0"