-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
39 lines (31 loc) · 1.01 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
[package]
description = "A rust port of sl"
documentation = "https://docs.rs/rust-sl/latest"
edition = "2021"
homepage = "https://docs.rs/crate/rust-sl/latest"
license = "AGPL-3.0-or-later"
name = "rust-sl"
repository = "https://github.com/amorphobia/rust-sl"
version = "0.2.3"
keywords = ["joke", "cli"]
categories = ["command-line-utilities", "games"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = {version = "3.1", features = ["derive"]}
crossterm = "0.23"
ctrlc = "3.2"
lazy_static = "1.4.0"
[profile.release]
panic = 'abort'
[[bin]]
name = "sl"
path = "src/main.rs"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-{ target }.{ archive-format }"
bin-dir = "{ bin }{ binary-ext }"
[package.metadata.binstall.overrides.i686-pc-windows-msvc]
pkg-fmt = "zip"
[package.metadata.binstall.overrides.x86_64-apple-darwin]
pkg-fmt = "zip"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-fmt = "zip"