aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 7c80a40b1435562a53de50a543a3a114fbef3e6e (plain)
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
[package]
name = "bibiman"
version = "0.16.2"
authors = ["lukeflo <lukeflo_git@posteo.de>"]
license = "GPL-3.0-or-later"
repository = "https://codeberg.org/lukeflo/bibiman"
readme = "README.md"
description = "TUI for interacting with BibLaTeX databases"
keywords = ["tui", "biblatex", "bibliography", "bibtex", "latex"]
categories = ["command-line-utilities"]
edition = "2024"
exclude = ["/tests", ".*"]

[profile.release-git]
inherits = "release"
lto = "fat"

[dependencies]
arboard = { version = "3.6.1", features = ["wayland-data-control"] }
biblatex = "0.11.0"
color-eyre = "0.6.5"
crossterm = { version = "0.29.0", features = ["event-stream"] }
dirs = "6.0.0"
editor-command = "2.0.0"
futures = "0.3.31"
rand = "0.9"
itertools = "0.14.0"
lexopt = "0.3.1"
nucleo-matcher = "0.3.1"
ratatui = { version = "0.29.0", features = ["unstable-rendered-line-info", "serde"]}
signal-hook = "0.3.18"
tokio = { version = "1.48.0", features = ["full"] }
tokio-util = "0.7.16"
walkdir = "2.5.0"
regex = "1.12.2"
ureq = "3.1.2"
serde = { version = "1.0.228", features = ["serde_derive"] }
figment = { version = "0.10.19", features = [ "toml", "test" ]}
owo-colors = "4.2.3"
logos = "0.15.1"
phf = { version = "0.13.1", features = ["macros"] }
indoc = "2.0.6"
deunicode = "1.6.2"
tui-input = { version = "0.14.0", default-features = false, features = ["crossterm"] }

[workspace.metadata.cross.target.aarch64-unknown-linux-gnu]
# Install libssl-dev:arm64, see <https://github.com/cross-rs/cross/blob/main/docs/custom_images.md#adding-dependencies-to-existing-images>
pre-build = [
    "dpkg --add-architecture $CROSS_DEB_ARCH",
    "apt-get update && apt-get --assume-yes install libssl-dev:$CROSS_DEB_ARCH"
]