32 lines
935 B
TOML
32 lines
935 B
TOML
[package]
|
|
name = "rbx_asset"
|
|
version = "0.5.0"
|
|
edition = "2021"
|
|
publish = ["strafesnet"]
|
|
repository = "https://git.itzana.me/StrafesNET/asset-tool"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Strongly typed interface to the Roblox API using a Cookie or an API key."
|
|
authors = ["Rhys Lloyd <krakow20@gmail.com>"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
default = ["gzip", "default-tls"]
|
|
gzip = ["dep:flate2"]
|
|
|
|
default-tls = ["reqwest/default-tls"]
|
|
rustls-tls = ["reqwest/rustls-tls"]
|
|
|
|
[dependencies]
|
|
bytes = "1.10.1"
|
|
chrono = { version = "0.4.38", features = ["serde"] }
|
|
flate2 = { version = "1.0.29", optional = true }
|
|
reqwest = { version = "0.12.4", features = [
|
|
"json", "multipart",
|
|
# default features
|
|
"charset", "http2", "system-proxy"
|
|
], default-features = false }
|
|
serde = { version = "1.0.199", features = ["derive"] }
|
|
serde_json = "1.0.111"
|
|
url = "2.5.0"
|