-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
59 lines (51 loc) · 1.53 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
[package]
name = "ttysvr"
description = "Screensavers for your terminal"
version = "0.3.4"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["cxreiff <[email protected]>"]
readme = "README.md"
repository = "https://github.com/cxreiff/ttysvr"
homepage = "https://github.com/cxreiff/ttysvr"
categories = ["command-line-interface"]
keywords = ["bevy", "ratatui", "terminal", "tui", "screensaver"]
[dependencies]
avian2d = "0.1.1"
bevy = "0.14.2"
bevy_ratatui = "0.6.4"
bevy_ratatui_render = "0.6.0"
clap = { version = "4.5.13", features = ["derive"] }
rand = "0.8.5"
rand_chacha = "0.3.1"
ratatui = "0.29.0"
[lints.clippy]
too_many_arguments = "allow"
type_complexity = "allow"
[profile.dev]
opt-level = 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.22.1"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = ["homebrew"]
# A GitHub repo to push Homebrew formulas to
tap = "cxreiff/homebrew-tap"
# 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
publish-jobs = ["homebrew"]
# Which actions to run on pull requests
pr-run-mode = "plan"
[workspace.metadata.dist.dependencies.apt]
libasound2-dev = "*"
libudev-dev = "*"