36 lines
868 B
TOML
Raw Normal View History

2022-07-10 17:06:19 +02:00
[package]
name = "qbittorrent-web-api-gen"
2022-07-12 21:11:51 +00:00
version = "0.3.2"
2022-07-10 17:06:19 +02:00
edition = "2021"
2022-07-11 01:41:51 +00:00
license = "MIT"
2022-07-10 16:41:57 +00:00
keywords = ["qbittorrent"]
repository = "https://github.com/JoelWachsler/qbittorrent-web-api"
2022-07-11 14:44:43 +00:00
description = "Generated web api for qBittorrent"
2022-07-10 17:01:04 +00:00
exclude = ["*.txt", "tests"]
2022-07-14 11:16:03 +00:00
# we use trybuild instead
autotests = false
2022-07-10 17:06:19 +02:00
[lib]
proc-macro = true
2022-07-14 11:16:03 +00:00
[[test]]
name = "tests"
path = "tests/tests.rs"
2022-07-10 17:06:19 +02:00
[dependencies]
syn = { version = "1.0.98", features = ["extra-traits"]}
quote = "1.0.20"
proc-macro2 = "1.0.40"
case = "1.0.0"
thiserror = "1.0.31"
serde = { version = "1.0.138", features = ["derive"] }
serde_json = "1.0.82"
regex = "1.6.0"
[dev-dependencies]
trybuild = { version = "1.0.63", features = ["diff"] }
anyhow = "1.0.58"
tokio = { version = "1.19.2", features = ["full"] }
reqwest = { version = "0.11.11", features = ["json", "multipart"] }
pretty_assertions = "1.2.1"