mirror of
https://github.com/vexahub/tusc.git
synced 2026-09-08 00:00:08 +02:00
feat: base file, nothing special yet
This commit is contained in:
@@ -0,0 +1,6 @@
|
|||||||
|
version: 2
|
||||||
|
updates:
|
||||||
|
- package-ecosystem: cargo
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: weekly
|
||||||
Generated
+7
@@ -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
@@ -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
|
||||||
@@ -1,2 +1,3 @@
|
|||||||
# tusc
|
# tusc
|
||||||
A tus resumable upload client for Rust
|
|
||||||
|
A tus resumable upload client for Rust (WIP)
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
fn main() {
|
||||||
|
println!("Hello, world!"); // Nothing yet!
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user