You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
799 B
TOML
33 lines
799 B
TOML
[package]
|
|
name = "hydrus-api"
|
|
version = "0.7.0"
|
|
authors = ["trivernis <trivernis@protonmail.com>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
readme = "README.md"
|
|
description = "A rust wrapper for the hydrus client api"
|
|
repository = "https://github.com/trivernis/hydrus-api-rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
|
reqwest = { version = "0.11.9", features = ["json"] }
|
|
tracing = "0.1.31"
|
|
mime = "0.3.16"
|
|
chrono = "0.4.19"
|
|
regex = "1.5.4"
|
|
lazy_static = "1.4.0"
|
|
|
|
[dev-dependencies]
|
|
maplit = "1.0.2"
|
|
dotenv = "0.15.0"
|
|
tracing-subscriber = "0.3.9"
|
|
|
|
[dev-dependencies.tokio]
|
|
version = "1.17.0"
|
|
features = ["macros", "rt-multi-thread"]
|
|
|
|
[features]
|
|
rustls = ["reqwest/rustls"]
|