Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

feat: rename to see #11

Merged
merged 15 commits into from
Sep 9, 2024
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
repository: "guilhermeprokisch/homebrew-smd"
repository: "guilhermeprokisch/homebrew-see"
token: ${{ secrets.HOMEBREW_TAP_TOKEN }}
# So we have access to the formula
- name: Fetch homebrew formulae
Expand Down
136 changes: 68 additions & 68 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 12 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
[package]
name = "smd"
version = "0.3.1"
name = "see-cat"
version = "0.1.0"
edition = "2021"
authors = ["Guilherme Prokisch <guilherme.prokisch@gmail.com>"]
homepage = "https://github.com/guilhermeprokisch/smd"
description = "A minimalistic Markdown renderer for the terminal with syntax highlighting, emoji support, and image rendering"
homepage = "https://github.com/guilhermeprokisch/see"
description = "A cute cat(1)"
license = "MIT"
repository = "https://github.com/guilhermeprokisch/smd"
repository = "https://github.com/guilhermeprokisch/see"
readme = "README.md"
keywords = ["markdown", "terminal", "renderer", "syntax-highlighting", "emoji"]
keywords = ["markdown", "cat", "terminal", "viewer", "syntax-highlighting"]
categories = ["command-line-utilities", "text-processing"]
include = ["src/**/*", "docs/**/*", "Cargo.toml"]


[[bin]]
name = "see"
path = "src/main.rs"

[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down Expand Up @@ -52,14 +56,9 @@ ci = "github"
# The installers to generate for each app
installers = ["shell", "homebrew"]
# A GitHub repo to push Homebrew formulas to
tap = "guilhermeprokisch/homebrew-smd"
tap = "guilhermeprokisch/homebrew-see"
# Target platforms to build apps for (Rust target-triple syntax)
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
]
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
# Path that installers should place binaries in
install-path = "CARGO_HOME"
# Publish jobs to run in CI
Expand Down
Loading