mirror of
https://github.com/vexahub/tusc.git
synced 2026-08-07 00:00:04 +02:00
d6ec43fe42
Bumps [base64](https://github.com/marshallpierce/rust-base64) from 0.22.1 to 0.23.0. - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/marshallpierce/rust-base64/compare/v0.22.1...v0.23.0) --- updated-dependencies: - dependency-name: base64 dependency-version: 0.23.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
20 lines
569 B
TOML
20 lines
569 B
TOML
[package]
|
|
name = "tusc"
|
|
version = "0.0.1"
|
|
edition = "2024"
|
|
rust-version = "1.85"
|
|
description = "A tus resumable upload client written in Rust"
|
|
authors = ["Thomas <[email protected]>"]
|
|
repository = "https://github.com/vexahub/tusc"
|
|
keywords = ["tus", "client", "upload", "resumable"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
reqwest = { version = "0.13", default-features = false, features = ["rustls", "stream"] }
|
|
tokio = { version = "1", default-features = false, features = ["fs", "io-util"] }
|
|
base64 = "0.23"
|
|
thiserror = "2"
|
|
tracing = "0.1"
|
|
url = "2.5"
|