-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
48 lines (42 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
[package]
name = "snip-cli"
version = "0.1.2"
edition = "2021"
authors = ["Uriah G. <[email protected]>"]
description = "A CLI tool (snip-cli) for managing Neovim and VSCode snippets"
readme = "README.md"
license = "MIT"
keywords = ["neovim", "snippets", "rust", "cli", "vscode"]
categories = ["command-line-utilities"]
# use in Github workflow `release`
[[bin]]
name = "snip"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.94"
clap = { version = "4.5.23", features = ["cargo", "derive", "string"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
tokio = { version = "1.42.0", features = ["full"] }
tempfile = { version = "3.14.0", features = [] }
prettytable = "0.10.0"
dirs-next = "2.0.0"
dotenv = { version = "0.15.0", features = ["clap"] }
opener = "0.7.2"
[package.metadata.bundle]
name = "snip" # The name of your application
identifier = "com.codeitlikemiley.snip" # The bundle identifier of your application
copyright = "Copyright (c) codeitlikemiley 2023. All rights reserved."
category = "Developer Tool"
short_description = "A CLI tool for managing Neovim and VSCode snippets"
long_description = "A CLI tool for managing Neovim and VSCode snippets"
version = "0.1.2" # Version of your application
osx_url_schemes = [
"com.codeitlikemiley.snip",
] # URL schemes your application supports
script = "scripts/postinstall" # Path to your postinstall script
[profile.release]
lto = true
codegen-units = 1
strip = true