-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
58 lines (51 loc) · 1.84 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
[package]
name = "gawr"
version = "1.0.5"
license = "MIT OR Apache-2.0"
authors = ["Nicolas Mémeint <[email protected]>"]
repository = "https://github.com/nicomem/gawr"
edition = "2021"
include = ["src/**/*", "CHANGELOG.md"]
description = "An audio archiver tool to create an audio library out of web videos. Download, clip, and normalize audio streams"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bitflags = "2.6.0"
clap = { version = "4.5.16", features = ["cargo"] }
config = { version = "0.14.0", default-features = false, features = ["toml"] }
crossbeam-channel = "0.5.13"
fastrand = "2.1.1"
heck = "0.5.0"
indoc = "2.0.5"
miette = { version = "7.2.0", features = ["fancy"] }
owo-colors = "4.0.0"
regex = "1.10.6"
rusqlite = { version = "0.32.1", features = ["bundled"] }
serde = { version = "1.0.209", features = ["derive"] }
simd-json = { version = "0.14.0-rc.3", default-features = false, features = ["swar-number-parsing", "runtime-detection"] }
tempfile = "3.12.0"
time = { version = "0.3.36", features = ["local-offset"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["time"] }
[features]
[profile.release]
strip = true
opt-level = "z"
panic = "abort"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[workspace.metadata.release]
publish = false
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.12.0"
# CI backends to support
ci = ["github"]
# The installers to generate for each app
installers = []
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
# Publish jobs to run in CI
pr-run-mode = "skip"