forked from mirrors/series-troxide
Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.133 to 1.0.134. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.133...v1.0.134) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
84 lines
2.1 KiB
TOML
84 lines
2.1 KiB
TOML
[package]
|
|
name = "series-troxide"
|
|
authors = ["Maarifa Maarifa <maarifamaarifa20@gmail.com>"]
|
|
license = "GPL-3.0"
|
|
description = "A Simple and Modern Series Tracker"
|
|
categories = ["series", "TV", "gui", "tracker"]
|
|
keywords = ["series-tracker", "tv-shows", "tv-series", "entertainment", "gui"]
|
|
repository = "https://github.com/MaarifaMaarifa/series-troxide"
|
|
readme = "README.md"
|
|
version = "0.5.1"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.23", features = ["derive"] }
|
|
iced = { version = "0.13.1", features = ["image", "svg", "tokio"] }
|
|
iced_aw = { version = "0.11", features = ["spinner"] }
|
|
anyhow = "1.0.95"
|
|
thiserror = "2.0.9"
|
|
reqwest = { version = "0.12.12", features = ["json"] }
|
|
serde = { version = "1.0.217", features = ["derive"] }
|
|
serde_json = "1.0.134"
|
|
toml = "0.8.19"
|
|
json = "0.12.4"
|
|
tokio = { version = "1.42.0", features = ["full"] }
|
|
tracing-subscriber = "0.3.19"
|
|
tracing = "0.1.41"
|
|
sled = "0.34.7"
|
|
bincode = "1.3.3"
|
|
rand = "0.8.5"
|
|
indexmap = { version = "2.7.0", features = ["serde"] }
|
|
directories = "5.0.1"
|
|
lazy_static = "1.5.0"
|
|
sha2 = "0.10.8"
|
|
notify-rust = "4.11.3"
|
|
chrono = { version = "0.4.39", features = ["serde"] }
|
|
html2text = "0.13.6"
|
|
bytes = "1.9.0"
|
|
rfd = "0.15.2"
|
|
image = "0.25.5"
|
|
rust_iso3166 = "0.1.13"
|
|
webbrowser = "1.0.3"
|
|
notify = "7.0.0"
|
|
num-traits = "0.2.19"
|
|
semver = "1.0.24"
|
|
ron = "0.8.1"
|
|
smallvec = "1.13.2"
|
|
fuzzy-matcher = "0.3.7"
|
|
|
|
[build-dependencies]
|
|
built = { version = "0.7.5", features = ["git2", "chrono"] }
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = true
|
|
codegen-units = 1
|
|
|
|
[profile.dev.package."*"]
|
|
opt-level = 3
|
|
|
|
# The profile that 'cargo dist' will build with
|
|
[profile.dist]
|
|
inherits = "release"
|
|
lto = "thin"
|
|
|
|
# Config for 'cargo dist'
|
|
[workspace.metadata.dist]
|
|
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
|
|
cargo-dist-version = "0.10.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 = "plan"
|
|
|
|
allow-dirty = ["ci", "msi"]
|