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