mirror of
https://github.com/zhom/banderole.git
synced 2026-04-29 23:27:48 +02:00
34 lines
889 B
TOML
34 lines
889 B
TOML
[package]
|
|
name = "banderole"
|
|
description = "A cross-platform Node.js single-executable bundler"
|
|
homepage = "https://github.com/zhom/banderole"
|
|
repository = "https://github.com/zhom/banderole"
|
|
license = "MIT"
|
|
authors = ["zhom <contact@donutbrowser.com>"]
|
|
version = "0.0.2"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.4", features = ["derive"] }
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
reqwest = { version = "0.12", features = ["stream"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
lazy_static = "1.4"
|
|
uuid = { version = "1.0", features = ["v4"] }
|
|
sha2 = "0.10"
|
|
zip = "4"
|
|
directories = "6"
|
|
anyhow = "1.0"
|
|
walkdir = "2.4"
|
|
futures-util = "0.3"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
tempfile = "3.20"
|
|
base64 = "0.22"
|
|
|
|
[build-dependencies]
|
|
reqwest = { version = "0.12", features = ["blocking"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.20"
|