This commit is contained in:
Waradu 2024-10-19 22:28:13 +02:00
commit 27ac40966f
No known key found for this signature in database
GPG key ID: F85AAC8BA8B8DAAD
6 changed files with 1809 additions and 0 deletions

20
Cargo.toml Normal file
View file

@ -0,0 +1,20 @@
[package]
name = "to-streamshare"
version = "0.1.0"
edition = "2021"
description = "Upload to streamshare (to-ss > toss) from the terminal"
license = "MIT"
homepage = "https://waradu.dev"
repository = "https://github.com/Waradu/to-streamshare"
readme = "README.md"
authors = ["Waradu"]
keywords = ["streamshare","file-sharing","upload"]
[dependencies]
clap = { version = "4.5.20", features = ["derive"] }
streamshare = "1.0.0"
tokio = { version = "1.40.0", features = ["full"] }
[[bin]]
name = "toss"
path = "src/main.rs"