Initial
This commit is contained in:
commit
232a2fc2d9
10 changed files with 3315 additions and 0 deletions
24
Cargo.toml
Normal file
24
Cargo.toml
Normal file
|
@ -0,0 +1,24 @@
|
|||
[package]
|
||||
name = "renbin"
|
||||
description = "Split files into compressed and encrypted chunks, then store them in pastebins"
|
||||
authors = ["trisuaso"]
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
repository = "https://trisua.com/t/renbin"
|
||||
license = "AGPL-3.0-or-later"
|
||||
|
||||
[dependencies]
|
||||
aes-gcm = "0.10.3"
|
||||
clap = { version = "4.5.39", features = ["derive"] }
|
||||
flate2 = "1.1.2"
|
||||
reqwest = "0.12.19"
|
||||
serde = { version = "1.0.219", features = ["derive"] }
|
||||
toml = "0.8.23"
|
||||
rand = "0.9.1"
|
||||
base64 = "0.22.1"
|
||||
pathbufd = "0.1.4"
|
||||
tokio = { version = "1.45.1", features = ["macros", "rt-multi-thread"] }
|
||||
|
||||
[[bin]]
|
||||
name = "renbin"
|
||||
path = "./src/main.rs"
|
Loading…
Add table
Add a link
Reference in a new issue