feat: base file, nothing special yet

This commit is contained in:
2026-05-27 21:09:59 +02:00
parent f333a7492a
commit 8b4adb8f8e
5 changed files with 39 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: cargo
directory: "/"
schedule:
interval: weekly
Generated
+7
View File
@@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "tusc"
version = "0.0.0"
+21
View File
@@ -0,0 +1,21 @@
[package]
name = "tusc"
version = "0.0.0"
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"]
license-file = "LICENSE"
readme = "README.md"
[dependencies]
[profile.release]
debug = false
lto = "fat"
panic = "abort"
opt-level = 3
codegen-units = 1
strip = true
+2 -1
View File
@@ -1,2 +1,3 @@
# tusc
A tus resumable upload client for Rust
A tus resumable upload client for Rust (WIP)
+3
View File
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!"); // Nothing yet!
}