abacus/abacus-ui/Cargo.toml

33 lines
779 B
TOML

[package]
name = "abacus-ui"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "abacus"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
druid = { git = "https://github.com/linebender/druid.git", features=["im", "svg"] }
abacus-core = { path = "../abacus-core" }
syntect = "5.0.0"
ropey = "1.5.0"
clipboard = "0.5.0"
[package.metadata.deb]
name = "Abacus"
maintainer = "Joe Bellus <joe@5sigma.io>"
copyright = "2022, Joe Bellus"
extended-description = """\
A programable scratchpad for quick calcualtions\
"""
depends = "$auto"
section = "utility"
priority = "optional"
assets = [
["target/release/abacus", "usr/bin/", "755"],
["README.org", "usr/share/doc/abacus/README", "644"],
]