20 lines
516 B
TOML
20 lines
516 B
TOML
# https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[package]
|
|
name = "webextension-native-messaging"
|
|
description = "WebExtension native messaging library for Rust."
|
|
repository = "https://git.bauke.xyz/Holllo/webextension-native-messaging"
|
|
license = "MIT OR Apache-2.0"
|
|
version = "1.0.1"
|
|
authors = ["Holllo <helllo@holllo.org>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "source/lib.rs"
|
|
|
|
[dependencies]
|
|
byteorder = "1.4.3"
|
|
serde = { version = "1.0.145", features = ["derive"] }
|
|
serde_json = "1.0.85"
|
|
thiserror = "1.0.37"
|