-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (29 loc) · 972 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (29 loc) · 972 Bytes
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
[package]
name = "locrawl"
version = "0.1.0"
edition = "2024"
description = "A CLI tool for retrieving railway model data from manufacturer websites and webshops"
authors = ["Carlo Micieli <piovarolo@gmail.com>"]
license = "Apache-2.0"
rust-version = "1.96.0"
[dependencies]
anyhow = "1.0.102"
async-trait = "0.1.89"
chrono = { version = "0.4.44", features = ["serde"] }
clap = { version = "4.6.1", features = ["derive"] }
colored = "3.1.1"
csv = "1.4.0"
env_logger = "0.11.10"
jsonschema = "0.45.1"
log = "0.4.29"
reqwest = { version = "0.13.3", features = ["json"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
slug = "0.1.6"
thiserror = "2.0.18"
tokio = { version = "1.52.3", features = ["full"] }
urlencoding = "2.1.3"
uuid = { version = "1.23.1", features = ["v4"] }
zip = "8.6.0"
[dev-dependencies]
assert_cmd = "2.2.2"