[package]
edition = "2021"
name = "vim_rs"
version = "0.4.0"
authors = ["Kiril Karaatanasov <karaatanasov@gmail.com>"]
build = "build.rs"
exclude = [
"target/*",
"**/*.rs.bk",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust Bindings for the VMware by Broadcom vCenter VI JSON API"
homepage = "https://github.com/noclue/vim_rs"
documentation = "https://docs.rs/vim_rs"
readme = "README.md"
keywords = [
"vi-json",
"vim",
"bindings",
"vcenter",
"vmware",
]
categories = [
"api-bindings",
"network-programming",
]
license = "Apache-2.0"
repository = "https://github.com/noclue/vim_rs"
[features]
defaults = []
[lib]
name = "vim_rs"
path = "src/lib.rs"
doctest = false
[[test]]
name = "default_test"
path = "tests/default_test.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "serde_test"
path = "tests/serde_test.rs"
[[test]]
name = "task_tracker_integration"
path = "tests/task_tracker_integration.rs"
[[test]]
name = "vim_any_downcast"
path = "tests/vim_any_downcast.rs"
[[bench]]
name = "miniserde_bench"
path = "benches/miniserde_bench.rs"
harness = false
[dependencies.base64]
version = "0.22"
[dependencies.bytes]
version = "1"
[dependencies.env_logger]
version = "0.11"
[dependencies.indexmap]
version = "2.9"
[dependencies.log]
version = "0.4"
[dependencies.miniserde]
version = "0.1"
[dependencies.phf]
version = "0.13"
[dependencies.reqwest]
version = "0.12"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.44"
features = [
"rt-multi-thread",
"macros",
"sync",
]
[dependencies.vim_macros]
version = "0.4"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[build-dependencies.rustc_version]
version = "0.4"