[package]
edition = "2024"
rust-version = "1.88.0"
name = "wepub-core"
version = "0.2.0"
authors = ["iorate"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Library for publishing browser extensions to Chrome Web Store and Firefox AMO"
homepage = "https://github.com/iorate/wepub"
readme = "README.md"
keywords = [
"browser-extension",
"chrome",
"firefox",
"amo",
"cws",
]
categories = [
"api-bindings",
"web-programming::http-client",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/iorate/wepub"
[lib]
name = "wepub_core"
path = "src/lib.rs"
[dependencies.jsonwebtoken]
version = "10.3.0"
features = ["rust_crypto"]
[dependencies.reqwest]
version = "0.13.3"
features = [
"json",
"multipart",
"form",
]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.52.3"
features = ["time"]
[dependencies.tracing]
version = "0.1.44"
[dependencies.url]
version = "2.5.8"
[dependencies.uuid]
version = "1.23.1"
features = ["v4"]
[dev-dependencies.tokio]
version = "1.52.3"
features = [
"macros",
"rt",
]
[dev-dependencies.wiremock]
version = "0.6.5"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"