[package]
edition = "2021"
rust-version = "1.88"
name = "mossaic"
version = "0.4.0"
authors = ["Vyncint Ng <vyncint@icloud.com>"]
build = false
exclude = [
".github/*",
".claude/*",
"action/*",
"docs/*",
"deny.toml",
"rust-toolchain.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "mossaic"
description = "Plan and track GitHub contribution art — what today owes to draw your name by December, and whether the year can still be drawn at all"
readme = "README.md"
keywords = [
"github",
"contributions",
"contribution-art",
"sixel",
"kitty",
]
categories = [
"command-line-utilities",
"visualization",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/vyncint/mossaic"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "mossaic"
path = "src/lib.rs"
[[bin]]
name = "mossaic"
path = "src/main.rs"
[[bin]]
name = "mossaic-art"
path = "src/bin/mossaic-art.rs"
[[bin]]
name = "mossaic-glyphs"
path = "src/bin/mossaic-glyphs.rs"
[[example]]
name = "chart_to_png"
path = "examples/chart_to_png.rs"
[[test]]
name = "art_cli"
path = "tests/art_cli.rs"
[[test]]
name = "pixels"
path = "tests/pixels.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.miniz_oxide]
version = "0.9"
[dependencies.ratatui]
version = "0.30"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dev-dependencies.termlens]
version = "0.5.0"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[lints.clippy]
dbg_macro = "warn"
todo = "warn"
unimplemented = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1
[profile.release]
lto = true
strip = true