-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
46 lines (40 loc) · 1.5 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "yelp-fusion-rs"
version = "0.2.2"
edition = "2021"
rust-version = "1.81"
authors = ["Todd Everett Griffin <[email protected]>"]
repository = "https://github.com/goddtriffin/yelp-fusion-rs"
homepage = "https://www.toddgriffin.me/"
description = "A Rust library for the Yelp Fusion API."
license = "MIT"
keywords = ["yelp", "fusion", "api", "http", "client"]
categories = ["web-programming", "api-bindings"]
include = ["**/*.rs", "Cargo.toml", ".clippy.toml", "LICENSE", "README.md"]
[lib]
path = "src/lib.rs"
[lints.rust]
unsafe_code = { level = "forbid", priority = 0 }
unfulfilled_lint_expectations = { level = "forbid", priority = 1 }
[lints.clippy]
use_self = { level = "allow", priority = 1 }
allow_attributes = { level = "forbid", priority = 1}
multiple_crate_versions = { level = "allow", priority = 1 }
nursery = { level = "allow", priority = 0 }
all = { level = "deny", priority = -1 }
correctness = { level = "deny", priority = -1 }
suspicious = { level = "deny", priority = -1 }
style = { level = "deny", priority = -1 }
complexity = { level = "deny", priority = -1 }
perf = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
cargo = { level = "deny", priority = -1 }
[dependencies]
# tokio
tokio = { version = "1.40.0", features = ["full"] }
# http request
reqwest = { version = "0.12.7", default-features = false, features = [ "json", "rustls-tls", "blocking" ] }
bytes = "1.7.2"
# serde
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"