bloop-sdk 0.2.0

Bloop error reporting and LLM tracing SDK for Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "bloop-sdk"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bloop error reporting and LLM tracing SDK for Rust"
readme = false
license = "MIT"
repository = "https://github.com/jaikoo/bloop-rust"

[features]
async = [
    "dep:reqwest",
    "dep:tokio",
]
blocking = ["dep:ureq"]
default = ["blocking"]
openai = [
    "dep:async-openai",
    "async",
]

[lib]
name = "bloop_sdk"
path = "src/lib.rs"

[[test]]
name = "client_test"
path = "tests/client_test.rs"

[dependencies.async-openai]
version = "0.27"
optional = true

[dependencies.hex]
version = "0.4"

[dependencies.hmac]
version = "0.12"

[dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "rustls-tls",
]
optional = true
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.sha2]
version = "0.10"

[dependencies.tokio]
version = "1"
features = [
    "time",
    "sync",
    "rt",
]
optional = true

[dependencies.ureq]
version = "2"
features = ["json"]
optional = true

[dependencies.uuid]
version = "1"
features = ["v4"]

[dev-dependencies.tokio]
version = "1"
features = ["full"]