24 lines
621 B
TOML
24 lines
621 B
TOML
[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"
|