-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (33 loc) · 1.4 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
[package]
name = "ws-cli"
version = "0.1.3"
edition = "2021"
authors = ["Uriah <codeitlikemiley@gmail.com>"]
description = "Manage your workspace with ease"
readme = "README.md"
license = "MIT"
keywords = ["workspace", "cli", "cargo"]
categories = ["command-line-utilities", "development-tools::cargo-plugins"]
# use in Github workflow `release`
[[bin]]
name = "ws"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.23", features = ["cargo", "derive", "string"] }
toml_edit = "0.22.22"
# Used when Bunding for OSX
[package.metadata.bundle]
name = "ws" # The name of your application
identifier = "com.codeitlikemiley.ws" # The bundle identifier of your application
copyright = "Copyright (c) codeitlikemiley 2023. All rights reserved."
category = "Developer Tool"
short_description = "A Workspace CLI for managing GRPC Server Workspace"
long_description = "A Workspace CLI for managing GRPC Server Workspace"
version = "0.1.3" # Version of your application
osx_url_schemes = ["com.codeitlikemiley.ws"]
script = "scripts/postinstall" # Path to your postinstall script
[profile.release]
lto = true
codegen-units = 1
strip = true