This commit is contained in:
Waradu 2024-10-19 22:20:44 +02:00
commit 67788708fd
No known key found for this signature in database
GPG key ID: F85AAC8BA8B8DAAD
5 changed files with 1746 additions and 0 deletions

18
Cargo.toml Normal file
View file

@ -0,0 +1,18 @@
[package]
name = "streamshare"
version = "1.0.0"
edition = "2021"
description = "Upload to streamshare library"
license = "MIT"
homepage = "https://waradu.dev"
repository = "https://github.com/Waradu/streamshare"
readme = "README.md"
authors = ["Waradu"]
[dependencies]
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12.8", features = ["json", "rustls-tls"] }
tokio-tungstenite = { version = "0.24.0", features = ["rustls-tls-webpki-roots"] }
futures = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"