44 lines
959 B
TOML
44 lines
959 B
TOML
[package]
|
|
name = "qbittorrent-web-api-gen"
|
|
version = "0.6.4"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
keywords = ["qbittorrent"]
|
|
repository = "https://github.com/jowax/qbittorrent-web-api"
|
|
description = "Generated web api for qBittorrent"
|
|
exclude = [
|
|
"*.txt",
|
|
"*.check",
|
|
"*.tree",
|
|
"tests",
|
|
"src/md_parser/token_tree_factory_tests",
|
|
"src/parser/group/method_tests",
|
|
]
|
|
# we use trybuild instead
|
|
autotests = false
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[[test]]
|
|
name = "tests"
|
|
path = "tests/tests.rs"
|
|
|
|
[dependencies]
|
|
syn = { version = "1.0", features = ["extra-traits"] }
|
|
quote = "1.0"
|
|
proc-macro2 = "1.0"
|
|
case = "1.0"
|
|
thiserror = "1.0.31"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde_repr = "0.1"
|
|
regex = "1.6"
|
|
|
|
[dev-dependencies]
|
|
trybuild = { version = "1.0", features = ["diff"] }
|
|
anyhow = "1.0"
|
|
tokio = { version = "1.19", features = ["full"] }
|
|
reqwest = { version = "0.11", features = ["json", "multipart"] }
|
|
pretty_assertions = "1.2"
|