[package]
edition = "2021"
name = "line_webhook"
version = "1.0.3"
authors = ["nanato12 <admin@okj.info>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Webhook event definition of the LINE Messaging API"
readme = false
license = "Apache-2.0"
repository = "https://github.com/nanato12/line-bot-sdk-rust/"
[lib]
name = "line_webhook"
path = "src/lib.rs"
[[test]]
name = "deserialization"
path = "tests/deserialization.rs"
[dependencies.base64]
version = "0.22.1"
[dependencies.futures]
version = "^0.3"
[dependencies.http-body-util]
version = "0.1.2"
[dependencies.hyper]
version = "^1.3.1"
features = ["full"]
[dependencies.hyper-util]
version = "0.1.5"
features = [
"client",
"client-legacy",
"http1",
"http2",
]
[dependencies.serde]
version = "^1.0"
features = ["derive"]
[dependencies.serde_json]
version = "^1.0"
[dependencies.serde_repr]
version = "^0.1"
[dependencies.tokio]
version = "^1"
features = ["time"]
[dependencies.url]
version = "^2.5"
[lints.clippy]
derivable_impls = "allow"
diverging_sub_expression = "allow"
empty_default_trait_impl = "allow"
empty_docs = "allow"
len_zero = "allow"
multiple_bound_locations = "allow"
only_used_in_recursion = "allow"
redundant_closure = "allow"
unnecessary_map_or = "allow"
unused_mut = "allow"
[lints.rust]
unreachable_code = "allow"