[package]
edition = "2024"
rust-version = "1.85"
name = "cloudconvert-sdk"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async Rust SDK primitives for the CloudConvert API v2."
documentation = "https://docs.rs/cloudconvert-sdk"
readme = "README.md"
keywords = [
"cloudconvert",
"file-conversion",
"api-client",
"pdf",
"oauth",
]
categories = [
"api-bindings",
"asynchronous",
"web-programming",
"network-programming",
"authentication",
]
license = "MIT"
repository = "https://github.com/bnomei/cloudconvert-sdk"
[features]
default = []
retry = []
socket = ["dep:rust_socketio"]
[lib]
name = "cloudconvert_sdk"
path = "src/lib.rs"
[[example]]
name = "advanced_job"
path = "examples/advanced_job.rs"
[[example]]
name = "branch_job"
path = "examples/branch_job.rs"
[[example]]
name = "build_job"
path = "examples/build_job.rs"
[[example]]
name = "file_extensions"
path = "examples/file_extensions.rs"
[[example]]
name = "linear_options_job"
path = "examples/linear_options_job.rs"
[[test]]
name = "client"
path = "tests/client.rs"
[[test]]
name = "live_api"
path = "tests/live_api.rs"
[[test]]
name = "security"
path = "tests/security.rs"
[[test]]
name = "socket"
path = "tests/socket.rs"
[[test]]
name = "tasks"
path = "tests/tasks.rs"
[dependencies.base64]
version = "0.22.1"
[dependencies.bytes]
version = "1.11.1"
[dependencies.futures-util]
version = "0.3.32"
[dependencies.hex]
version = "0.4.3"
[dependencies.hmac]
version = "0.13.0"
[dependencies.reqwest]
version = "0.13.4"
features = [
"json",
"multipart",
"stream",
"rustls",
"query",
]
default-features = false
[dependencies.rust_socketio]
version = "0.6.0"
features = ["async"]
optional = true
[dependencies.secrecy]
version = "0.10.3"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.sha2]
version = "0.11.0"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.52.3"
features = [
"macros",
"rt-multi-thread",
"time",
"net",
"fs",
"io-util",
"sync",
]
[dependencies.url]
version = "2.5.8"
[dev-dependencies.axum]
version = "0.8.9"
[dev-dependencies.rstest]
version = "0.26.1"
[dev-dependencies.tokio]
version = "1.52.3"
features = ["test-util"]
[dev-dependencies.tower]
version = "0.5.3"