blob: c49dea122d6b869197c5d7d6acc2f703c3e2072b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[package]
name = "jellytools"
version = "0.1.0"
edition = "2021"
[dependencies]
jellycommon = { path = "../common" }
jellymatroska = {path = "../matroska"}
clap = { version = "4.0.32", features = ["derive"] }
log = "0.4.17"
env_logger = "0.10.0"
anyhow = "1.0.68"
serde_json = "1.0.91"
[[bin]]
path = "src/bin/create_item.rs"
name = "jellything-create-item"
[[bin]]
path = "src/bin/import.rs"
name = "jellything-import"
|