forked from gorilla-devs/ferinth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (26 loc) · 921 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
[package]
name = "ferinth"
# The major version specifies which version of the Modrinth API this supports
version = "2.7.1"
edition = "2021"
authors = ["Ilesh Thiada (theRookieCoder) <[email protected]>", "4JX"]
description = "A simple Rust wrapper for the official Modrinth API"
repository = "https://github.com/gorilla-devs/ferinth"
license = "MIT"
publish = ["crates-io"]
keywords = ["modrinth", "minecraft", "modding"]
categories = ["api-bindings"]
[dependencies]
reqwest = { version = "~0.11.12", default-features = false, features = [
"json",
"rustls-tls",
] }
serde = { version = "~1.0.147", features = ["derive"] }
chrono = { version = "~0.4.23", features = ["serde"] }
url = { version = "~2.2.2", features = ["serde"] }
lazy_static = "~1.4.0"
serde_json = "~1.0.87"
lazy-regex = "~2.3.1"
thiserror = "~1.0.37"
[dev-dependencies]
tokio = { version = "~1.21.2", features = ["rt-multi-thread", "macros"] }