blob: 6773ee0d07c0053f5ca7bc542250b40265866b9e [file] [log] [blame]
Mohammed Naser3415a2a2025-03-06 21:16:12 -05001[package]
2name = "ovsdb-client"
3version = "0.0.1"
4edition = "2021"
5description = "Async Rust client for the Open vSwitch Database Protocol with monitoring support"
6license = "Apache-2.0"
7keywords = ["ovsdb", "ovs", "openvswitch", "database", "networking"]
8categories = ["database", "network-programming", "api-bindings", "asynchronous"]
9repository = "https://review.vexxhost.dev/plugins/gitiles/ovsdb"
10
11[dependencies]
12bytes = "1.10.1"
13futures-util = { version = "0.3.31" }
14jsonrpsee = { version = "0.24.8", features = ["async-client", "client-core", "macros"] }
15serde = "1.0.218"
16serde_json = "1.0.140"
17thiserror = "2.0.12"
18tokio = { version = "1.43.0", features = ["net", "rt-multi-thread"] }
19tokio-util = { version = "0.7.13", features = ["codec"] }
20
21[dev-dependencies]
22tracing = "0.1.41"
23tracing-subscriber = "0.3.19"