Skip to content

Commit 08cf3a8

Browse files
refactor
1 parent e787851 commit 08cf3a8

29 files changed

+1204
-925
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ jobs:
2727
- name: Upload Artifact
2828
uses: actions/upload-artifact@v2
2929
with:
30-
name: rsnippet-${{ matrix.os }}
30+
name: snip-${{ matrix.os }}
3131
path: |
3232
./target/release/rsnippet${{ matrix.os == 'windows-latest' && '.exe' || '' }}

Cargo.lock

Lines changed: 92 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "rsnippet"
2+
name = "snip"
33
version = "0.1.0"
44
edition = "2021"
55
authors = ["Rustacean <codeitlikemiley@gmail.com>"]
@@ -16,15 +16,16 @@ tokio = { version = "1.35.0", features = ["full"] }
1616
tempfile = { version = "3.8.1", features = [] }
1717
prettytable = "0.10.0"
1818
dirs-next = "2.0.0"
19+
dotenv = { version = "0.15.0", features = ["clap"] }
1920

2021
[package.metadata.bundle]
21-
name = "rsnippet" # The name of your application
22-
identifier = "com.codeitlikemiley.rsnippet" # The bundle identifier of your application
22+
name = "snip" # The name of your application
23+
identifier = "com.codeitlikemiley.snip" # The bundle identifier of your application
2324
copyright = "Copyright (c) codeitlikemiley 2023. All rights reserved."
2425
category = "Developer Tool"
2526
short_description = "A CLI tool for managing Neovim LuaSnip Rust snippets"
2627
long_description = "A CLI tool for managing Neovim LuaSnip Rust snippets"
2728
version = "0.1.0" # Version of your application
28-
osx_url_schemes = ["com.codeitlikemiley.rsnippet"] # URL schemes your application supports
29+
osx_url_schemes = ["com.codeitlikemiley.snip"] # URL schemes your application supports
2930
script = "scripts/postinstall" # Path to your postinstall script
3031

0 commit comments

Comments
 (0)