[package]
edition = "2021"
name = "fastcomments-sdk"
version = "1.3.1"
authors = ["FastComments <support@fastcomments.com>"]
build = false
include = [
"src/**/*",
"sso/**/*",
"client/src/**/*",
"client/Cargo.toml",
"examples/**/*",
"tests/**/*",
"Cargo.toml",
"LICENSE",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Official FastComments Rust SDK (Typed API Client & Utilities)"
homepage = "https://fastcomments.com"
readme = "README.md"
keywords = [
"fastcomments",
"comments",
"commenting-system",
"api",
"sdk",
]
categories = [
"api-bindings",
"web-programming",
]
license = "MIT"
repository = "https://github.com/fastcomments/fastcomments-rust"
[lib]
name = "fastcomments_sdk"
path = "src/lib.rs"
[[example]]
name = "secure"
path = "examples/secure.rs"
[[example]]
name = "simple"
path = "examples/simple.rs"
[[test]]
name = "test_sso"
path = "tests/test_sso.rs"
[[test]]
name = "test_sso_integration"
path = "tests/test_sso_integration.rs"
[dependencies.base64]
version = "0.22.1"
[dependencies.hmac]
version = "0.12.1"
[dependencies.reqwest]
version = "^0.12"
features = [
"json",
"multipart",
"stream",
]
[dependencies.serde]
version = "^1.0"
features = ["derive"]
[dependencies.serde_json]
version = "^1.0"
[dependencies.serde_repr]
version = "^0.1"
[dependencies.serde_with]
version = "^3.8"
features = [
"base64",
"std",
"macros",
]
default-features = false
[dependencies.sha2]
version = "0.10.8"
[dependencies.tokio]
version = "1.44.1"
features = [
"macros",
"rt-multi-thread",
"fs",
]
[dependencies.tokio-util]
version = "^0.7"
features = ["codec"]
[dependencies.url]
version = "^2.5"
[dependencies.uuid]
version = "^1.8"
features = [
"serde",
"v4",
]
[dev-dependencies.tokio-test]
version = "0.4"