[package]
edition = "2024"
rust-version = "1.88.0"
name = "wepub"
version = "1.0.2"
authors = ["iorate"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI to publish browser extensions to Chrome Web Store, Firefox Add-ons, and Edge Add-ons"
homepage = "https://github.com/iorate/wepub"
readme = "README.md"
keywords = [
"browser-extension",
"chrome",
"firefox",
"edge",
"cli",
]
categories = [
"command-line-utilities",
"web-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/iorate/wepub"
[[bin]]
name = "wepub"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.clap]
version = "4.6.1"
features = [
"derive",
"env",
]
[dependencies.clap-verbosity-flag]
version = "3.0.4"
features = ["tracing"]
default-features = false
[dependencies.dotenvy]
version = "0.15.7"
[dependencies.tokio]
version = "1.52.3"
features = [
"macros",
"rt-multi-thread",
"fs",
"io-std",
"io-util",
]
[dependencies.tracing]
version = "0.1.44"
[dependencies.tracing-subscriber]
version = "0.3.23"
features = ["env-filter"]
[dependencies.url]
version = "2.5.8"
[dependencies.wepub-core]
version = "1.0.0"
[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"