mirror of
https://github.com/rustic-rs/rustic.git
synced 2025-10-26 11:18:51 +00:00
28 lines
681 B
TOML
28 lines
681 B
TOML
[package]
|
|
name = "rustic"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
derive_more = "0.99"
|
|
aes256ctr_poly1305aes = { path = "../aes256ctr_poly1305aes" }
|
|
base64 = "0.13"
|
|
scrypt = { version = "0.8", default-features = false }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
serde-aux = "3"
|
|
hex = { version = "0.4", features = ["serde"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
# index
|
|
boomphf = "0.5"
|
|
# local backend
|
|
walkdir = "2"
|
|
# commands
|
|
clap = { version = "3", features = ["derive"] }
|
|
prettytable-rs = "0.8"
|
|
|