mirror of
https://github.com/tribufu/sdk-rust
synced 2025-06-15 10:44:18 +00:00
47 lines
1013 B
TOML
47 lines
1013 B
TOML
[package]
|
|
name = "tribufu"
|
|
version = "1.1.0"
|
|
description = "REST API to access Tribufu services."
|
|
repository = "https://github.com/tribufu/tribufu-rust"
|
|
authors = ["Tribufu <contact@tribufu.com>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
edition = "2021"
|
|
publish = true
|
|
|
|
exclude = [
|
|
".editorconfig",
|
|
".env*",
|
|
".gitattributes",
|
|
".github/",
|
|
".openapi-generator-ignore",
|
|
".openapi-generator/",
|
|
".vscode/",
|
|
"examples/",
|
|
"scripts/",
|
|
"scripts/",
|
|
]
|
|
|
|
[lib]
|
|
name = "tribufu"
|
|
crate-type = ["rlib"]
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
async-trait = "^0.1"
|
|
reqwest = { version = "^0.12", features = ["json", "multipart"] }
|
|
serde = { version = "^1.0", features = ["derive"] }
|
|
serde_json = "^1.0"
|
|
serde_repr = "^0.1"
|
|
serde_with = { version = "^3.8", default-features = false, features = [
|
|
"base64",
|
|
"std",
|
|
"macros",
|
|
] }
|
|
url = "^2.5"
|
|
uuid = { version = "^1.8", features = ["serde", "v4"] }
|
|
|
|
[dev-dependencies]
|
|
dotenv = "0.15.0"
|
|
tokio = { version = "1.45.1", features = ["full"] }
|