-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (32 loc) · 901 Bytes
/
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
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "senpy-cli"
version = "0.1.2"
authors = ["Fuwn <[email protected]>"]
edition = "2021"
description = "Command-line interface to The Senpy Club API"
readme = "README.rst"
homepage = "https://github.com/senpy-club/cli"
repository = "https://github.com/senpy-club/cli"
license = "GPL-3.0-only"
keywords = ["rust", "anime", "senpy"]
categories = ["web-programming", "web-programming::http-server", "command-line-interface", "command-line-utilities"]
[[bin]]
name = "senpy"
path = "src/main.rs"
# Slower builds, faster executables
[profile.release]
lto = "fat"
codegen-units = 1
# Optimize for size
opt-level = "s"
[dependencies]
# CLI
clap = "3.1.6"
# The Senpy Club API
senpy = "0.1.3"
# Serialization
serde = "1.0.136"
serde_json = "1.0.79"
serde_yaml = "0.8.23"
serde_dhall = "0.11.0"