[package]
edition = "2021"
name = "drasi-bootstrap-http"
version = "0.1.8"
authors = ["Drasi Project"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HTTP bootstrap plugin for Drasi - fetches initial state from REST APIs"
readme = "README.md"
keywords = [
"drasi",
"plugin",
"bootstrap",
"http",
]
categories = ["network-programming"]
license = "Apache-2.0"
repository = "https://github.com/drasi-project/drasi-core"
[features]
dynamic-plugin = []
h2-truncation-poc = []
[lib]
name = "drasi_bootstrap_http"
crate-type = [
"lib",
"cdylib",
]
path = "src/lib.rs"
[[test]]
name = "e2e_query_test"
path = "tests/e2e_query_test.rs"
[[test]]
name = "h2_truncation_poc"
path = "tests/h2_truncation_poc.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.drasi-core]
version = "0.5.6"
[dependencies.drasi-lib]
version = "0.8.8"
[dependencies.drasi-plugin-sdk]
version = "0.9.1"
[dependencies.handlebars]
version = "6"
[dependencies.log]
version = "0.4"
[dependencies.ordered-float]
version = "3.0"
[dependencies.quick-xml]
version = "0.31"
features = ["serialize"]
[dependencies.reqwest]
version = "0.11"
features = ["json"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.tokio]
version = "1.0"
features = ["full"]
[dependencies.url]
version = "2"
[dependencies.utoipa]
version = "4"
features = ["chrono"]
[dev-dependencies.axum]
version = "0.7"
[dev-dependencies.base64]
version = "0.22"
[dev-dependencies.bytes]
version = "1"
[dev-dependencies.env_logger]
version = "0.11"
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.h2]
version = "0.4"
[dev-dependencies.http]
version = "1"
[dev-dependencies.tokio]
version = "1.0"
features = ["full"]
[lints.clippy]
large_enum_variant = "allow"
module_inception = "allow"
print_stdout = "warn"
ptr_arg = "allow"
type_complexity = "allow"
uninlined_format_args = "warn"
unwrap_used = "warn"
[lints.rust]
unused = "allow"
warnings = "deny"