-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
23 lines (21 loc) · 840 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
[package]
name = "findcar"
version = "0.0.3"
edition = "2021"
description = "An extensible CLI tool that filters, sorts, and aggregates search results from car websites. Because of course you want to search for cars from the command line."
license = "MIT"
keywords = ["car", "aggregation", "search", "engine", "motoring"]
exclude = [".github/", ".gitignore"]
repository = "https://github.com/hgrsd/findcar"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-recursion = "1"
async-trait = "0.1"
clap = { version = "4.2", features = ["derive"] }
csv = "1.2.1"
futures = "0.3"
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" }
tokio = { version = "1", features = ["full"] }
urlencoding = "2"