This repository has been archived by the owner on May 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
63 lines (55 loc) · 1.85 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "traxsourcetagger"
version = "0.1.1"
authors = ["Marekkon5"]
edition = "2018"
license = "MIT"
description = "Tool to tag your audio library using data from Traxsource"
homepage = "https://github.com/Marekkon5/traxsourcetagger"
repository = "https://github.com/Marekkon5/traxsourcetagger"
keywords = ["gui", "audio"]
categories = ["multimedia::audio"]
build = "src/build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde_json = "1.0"
webbrowser = "0.5.5"
minify-html = "0.3.10"
chrono = "0.4"
scraper = "0.12"
walkdir = "2.3"
metaflac = "0.2"
regex = "1"
strsim = "0.10"
threadpool = "1.8"
tungstenite = "0.11"
tinyfiledialogs = "3.3"
msgbox = "0.6"
runas = "0.2.1"
id3 = "0.6.2"
reqwest = { version = "0.10", features = [ "blocking" ] }
# Edge doesn't work on 0.7.2, use master
web-view = { git = "https://github.com/Boscop/web-view.git", features = ["edge"] }
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
# Optimize for size, speed doesn't matter due to rate limiting
# For smaller size use: `strip traxsourcetagger` (Linux/Mac)
# `upx -9 traxsourcetagger` - compress, any OS
# More: https://github.com/johnthagen/min-sized-rust
[profile.release]
opt-level = 'z'
lto = true
# panic = 'abort'
# Bundling, only used for Mac, not used for Linux/Win
[package.metadata.bundle]
name = "TraxsourceTagger"
identifier = "com.marekkon5.traxsourcetagger"
icon = ["assets/32x32.png", "assets/128x128.png", "assets/128x128@2x.png", "assets/icon.icns", "assets/icon.ico"]
version = "0.1.1"
resources = []
copyright = "Copyright (c) Marekkon5 2021. All rights reserved."
category = "Music"
short_description = "Tool to tag your audio library using data from Traxsource."
long_description = """
Simple Rust + Webview app to automatically tag your music collection using data from Traxsource.
"""