-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (39 loc) · 928 Bytes
/
Cargo.toml
File metadata and controls
41 lines (39 loc) · 928 Bytes
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
36
37
38
39
40
41
[package]
name = "aether-renderer-core"
version = "0.4.0"
edition = "2021"
description = "A sacred Rust-based CLI for rendering transparent WebM/MP4/GIF from PNG sequences"
license = "MIT"
authors = ["Mads Paaskesen <madspaaskesen@gmail.com>"]
homepage = "https://sacred-ai.com/about/aetherrenderer"
repository = "https://github.com/madspaaskesen/aether-renderer-core"
readme = "README.md"
documentation = "https://docs.rs/aether-renderer-core"
include = [
"src/**",
"Cargo.toml",
"README.md",
"LICENSE"
]
exclude = [
".DS_Store",
".*.DS_Store",
"dist/",
"target/",
"release-*",
"*.zip",
"*.png",
"*.dmg",
"Cargo.toml.orig"
]
[lib]
name = "aether_renderer_core"
path = "src/lib.rs"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
zip = "0.6"
tempfile = "3.8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
glob = "0.3"
indicatif = "0.17"