[package]
edition = "2021"
name = "onspring-api-sdk-rust"
version = "0.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust SDK for the Onspring API"
homepage = "https://github.com/StevanFreeborn/onspring-api-sdk-rust"
documentation = "https://docs.rs/onspring-api-sdk-rust"
readme = "README.md"
license = "MIT"
repository = "https://github.com/StevanFreeborn/onspring-api-sdk-rust"
[lib]
name = "onspring"
path = "src/lib.rs"
[[example]]
name = "apps"
path = "examples/apps.rs"
[[example]]
name = "fields"
path = "examples/fields.rs"
[[example]]
name = "files"
path = "examples/files.rs"
[[example]]
name = "lists"
path = "examples/lists.rs"
[[example]]
name = "ping"
path = "examples/ping.rs"
[[example]]
name = "records"
path = "examples/records.rs"
[[example]]
name = "reports"
path = "examples/reports.rs"
[[test]]
name = "integration_apps"
path = "tests/integration_apps.rs"
[[test]]
name = "integration_fields"
path = "tests/integration_fields.rs"
[[test]]
name = "integration_files"
path = "tests/integration_files.rs"
[[test]]
name = "integration_lists"
path = "tests/integration_lists.rs"
[[test]]
name = "integration_ping"
path = "tests/integration_ping.rs"
[[test]]
name = "integration_records"
path = "tests/integration_records.rs"
[[test]]
name = "integration_reports"
path = "tests/integration_reports.rs"
[[test]]
name = "test_apps"
path = "tests/test_apps.rs"
[[test]]
name = "test_fields"
path = "tests/test_fields.rs"
[[test]]
name = "test_files"
path = "tests/test_files.rs"
[[test]]
name = "test_lists"
path = "tests/test_lists.rs"
[[test]]
name = "test_ping"
path = "tests/test_ping.rs"
[[test]]
name = "test_records"
path = "tests/test_records.rs"
[[test]]
name = "test_reports"
path = "tests/test_reports.rs"
[dependencies.bytes]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"multipart",
"stream",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.uuid]
version = "1"
features = [
"serde",
"v4",
]
[dev-dependencies.chrono]
version = "0.4"
features = ["serde"]
[dev-dependencies.dotenvy]
version = "0.15"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]
[dev-dependencies.uuid]
version = "1"
features = [
"serde",
"v4",
]
[dev-dependencies.wiremock]
version = "0.6"