1
Fork 0
webextension-native-messaging/Cargo.toml

27 lines
631 B
TOML
Raw Permalink Normal View History

2021-09-04 11:44:28 +00:00
# https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "webextension-native-messaging"
2022-10-02 22:07:12 +00:00
description = "WebExtension native messaging library for Rust."
repository = "https://git.bauke.xyz/Holllo/webextension-native-messaging"
2021-09-04 11:44:28 +00:00
license = "MIT OR Apache-2.0"
2022-10-02 22:29:38 +00:00
version = "1.0.1"
2022-10-02 22:07:12 +00:00
authors = ["Holllo <helllo@holllo.org>"]
edition = "2021"
2021-09-04 11:44:28 +00:00
[lib]
path = "source/lib.rs"
2024-01-31 11:43:47 +00:00
[lints.clippy]
missing_docs_in_private_items = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"
2021-09-04 11:44:28 +00:00
[dependencies]
2024-01-31 11:42:31 +00:00
byteorder = "1.5.0"
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.113"
thiserror = "1.0.56"