2021-09-04 11:44:28 +00:00
|
|
|
# https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[package]
|
2022-10-02 22:25:39 +00:00
|
|
|
name = "webextension-native-messaging"
|
2022-10-02 22:07:12 +00:00
|
|
|
description = "WebExtension native messaging library for Rust."
|
2022-10-02 22:25:39 +00:00
|
|
|
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:26:22 +00:00
|
|
|
version = "1.0.0"
|
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"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
byteorder = "1.4.3"
|
2022-10-02 22:07:12 +00:00
|
|
|
serde = { version = "1.0.145", features = ["derive"] }
|
|
|
|
serde_json = "1.0.85"
|
|
|
|
thiserror = "1.0.37"
|