31 lines
1.0 KiB
TOML
31 lines
1.0 KiB
TOML
[package]
|
|
name = "irontelemetry"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["IronServices <support@ironservices.com>"]
|
|
description = "Error monitoring and crash reporting SDK for Rust applications"
|
|
license = "MIT"
|
|
repository = "https://github.com/IronServices/irontelemetry-rust"
|
|
homepage = "https://www.irontelemetry.com"
|
|
documentation = "https://docs.rs/irontelemetry"
|
|
readme = "README.md"
|
|
keywords = ["error-monitoring", "crash-reporting", "telemetry", "logging", "tracing"]
|
|
categories = ["development-tools::debugging", "api-bindings"]
|
|
|
|
[dependencies]
|
|
reqwest = { version = "0.11", features = ["json", "blocking"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
uuid = { version = "1.6", features = ["v4"] }
|
|
url = "2.5"
|
|
thiserror = "1.0"
|
|
tokio = { version = "1", features = ["rt-multi-thread", "sync"], optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
async = ["tokio"]
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
|