-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
70 lines (60 loc) · 1.82 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
65
66
67
68
69
70
[package]
name = "lifecycler"
description = "Bevy Game Jam #5 submission, terminal aquarium"
version = "0.2.9"
edition = "2021"
license = "MIT OR Apache-2.0 OR CC0-1.0"
authors = ["cxreiff <[email protected]>"]
readme = "README.md"
repository = "https://github.com/cxreiff/lifecycler"
homepage = "https://github.com/cxreiff/lifecycler"
categories = ["games", "command-line-interface"]
keywords = ["bevy", "ratatui", "terminal", "tui", "aquarium"]
[dependencies]
bevy = "0.14.2"
bevy_atmosphere = "0.10.0"
bevy_hanabi = "=0.12.0"
bevy_ratatui = "0.6.3"
bevy_ratatui_render = "0.5.7"
crossterm = "0.28.0"
rand = "0.8.5"
rand_chacha = "0.3.1"
ratatui = "0.28.1"
[lints.clippy]
too_many_arguments = "allow"
type_complexity = "allow"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[profile.release]
codegen-units = 1
lto = true
strip = true
opt-level = 'z'
[profile.release-native]
inherits = "release"
[patch.crates-io]
zune-jpeg = { git = "https://github.com/ironpeak/zune-image", rev = "eebb01b72c07aaf8b00200d9d87d4cba6f01651f" }
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
# 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 = "*"