[package] name = "ig-gfx-server" version = "1.0.0" authors = ["Michael Beier "] edition = "2021" description = "Client for intelligentgraphics IG.GFX.Server" license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] openconfiguration = { workspace = true } opentelemetry = { version = "0.22.0", optional = true } opentelemetry-http = { version = "0.11.0", optional = true } reqwest = { version = "0.11.18", features = ["json"] } schemars = { version = "0.8.21", optional = true } serde = "1.0.174" serde_json = "1.0.103" thiserror = "1.0.44" tracing = "0.1.37" tracing-opentelemetry = { version = "0.23.0", optional = true } url = { version = "2.4.0", features = ["serde"] } [dev-dependencies] tokio = { version = "1.29.1", features = ["rt", "macros"] } tokio-test = "0.4.2" [features] otel = [ "dep:opentelemetry", "dep:opentelemetry-http", "dep:tracing-opentelemetry", ] schema = ["dep:schemars"]