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

20 lines
516 B
TOML
Raw 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"
[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"