[package]
edition = "2021"
name = "oso-cloud"
version = "0.5.4"
authors = ["Oso Security, Inc. <support@osohq.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Oso Cloud client"
homepage = "https://www.osohq.com/docs"
readme = "README.md"
license = "Apache-2.0"
[features]
default = ["local-filtering"]
local-filtering = []
[lib]
name = "oso_cloud"
path = "src/lib.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.reqwest]
version = "0.12.5"
features = [
"blocking",
"json",
"rustls-tls",
"stream",
"http2",
"rustls-tls-native-roots",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tracing]
version = "0.1.40"
[dependencies.uuid]
version = "1.4"
features = ["v4"]
[dev-dependencies.tokio]
version = "1.26"
features = [
"rt",
"macros",
]
[dev-dependencies.tracing-subscriber]
version = "0.3.18"
features = ["env-filter"]
[lints.clippy]
doc_lazy_continuation = "allow"