[package]
edition = "2021"
name = "vortex-sdk"
version = "1.6.0"
authors = ["Team Vortex Software <support@vortexsoftware.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Vortex Rust SDK for authentication and invitation management"
homepage = "https://vortexsoftware.com"
documentation = "https://docs.rs/vortex-sdk"
readme = "README.md"
keywords = [
"vortex",
"authentication",
"invitations",
"jwt",
]
categories = [
"authentication",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/teamvortexsoftware/vortex"
[lib]
name = "vortex_sdk"
path = "src/lib.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[test]]
name = "test_accept_invitations"
path = "tests/test_accept_invitations.rs"
[dependencies.base64]
version = "0.21"
[dependencies.hmac]
version = "0.12"
[dependencies.reqwest]
version = "0.11"
features = ["json"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.tokio]
version = "1.0"
features = ["full"]
[dependencies.uuid]
version = "1.0"
features = ["v4"]
[dev-dependencies.tokio-test]
version = "0.4"