-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
35 lines (31 loc) · 1.01 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "figma-asset-downloader"
description = "Small utility to help you download Figma assets directly to your computer."
version = "0.9.1"
authors = ["Roberto Huertas <[email protected]>"]
license = "MIT"
edition = "2018"
repository = "https://github.com/robertohuertasm/figma-asset-downloader"
readme = "README.md"
keywords = ["cli", "figma", "assets", "images"]
categories = ["network-programming"]
exclude = [".github", ".vscode", ".pre-commit-config.yaml", "docs", "fad_manifest.toml"]
[badges]
maintenance = { status = "actively-developed" }
[[bin]]
name = "fad"
path = "./src/main.rs"
[dependencies]
tokio = { version = "1.14", features = ["macros", "rt-multi-thread", "fs"] }
futures = "0.3"
reqwest = { version = "0.11", features = ["json"] }
structopt = "0.3"
toml = "0.5"
console = "0.15"
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0.58"
image = { version = "0.23.10", features= ["jpeg", "jpeg_rayon"] }
oxipng = "5.0.1"
async-trait = "0.1.41"
anyhow = "1.0"
scan_dir = "0.3.3"