-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
64 lines (60 loc) · 1.68 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
59
60
61
62
63
64
[package]
name = "tooters"
version = "0.1.0"
edition = "2021"
license-file = "LICENSE.txt"
description = "A Rust TUI Mastodon App"
homepage = "https://toot.rs"
repository = "https://github.com/joshka/tooters"
readme = "README.md"
keywords = ["mastodon", "tui", "cli"]
categories = ["command-line-utilities"]
[dependencies]
axum = { version = "0.7.4", features = ["tokio"] }
crossterm = { version = "0.27.0", features = ["event-stream"] }
futures = "0.3.30"
html2text = "0.12.4"
tui-input = "0.8.0"
mastodon-async = { version = "1.3.2", features = ["toml"] }
parking_lot = "0.12.1"
ratatui = { version = "0.26.1" }
signal-hook = "0.3.17"
signal-hook-tokio = { version = "0.3.1", features = ["futures-v0_3"] }
time = "0.3.34"
tokio = { version = "1.36.0", features = [
"macros",
"rt-multi-thread",
"signal",
"sync",
"time",
"tracing",
] }
tracing = "0.1.40"
tracing-appender = "0.2.3"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tracing-log = "0.2.0"
webbrowser = "0.8.13"
xdg = "2.5.2"
color-eyre = "0.6.2"
[dev-dependencies]
tempfile = "3.10.1"
indoc = "2.0.4"
# 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.0.5"
# The preferred Rust toolchain to use in CI (rustup toolchain syntax)
rust-toolchain-version = "1.67.1"
# CI backends to support (see 'cargo dist generate-ci')
ci = ["github"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"aarch64-apple-darwin",
]