Skip to content

Commit

Permalink
Merge branch 'main' into feature/number-format
Browse files Browse the repository at this point in the history
  • Loading branch information
stchris committed Feb 7, 2024
2 parents a00db67 + 95d72e7 commit 1c62203
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 11 deletions.
5 changes: 5 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"image": "mcr.microsoft.com/devcontainers/rust",
"features": {
}
}
41 changes: 35 additions & 6 deletions Cargo.lock

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

22 changes: 17 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ color-eyre = "0.6"
crossterm = "0.27"
home = "0.5"
num-format = "0.4"
ratatui = "0.25"
reqwest = { version = "0.11", features = ["blocking", "json"]}
serde = { version = "1.0", features=["derive"]}
ratatui = "0.26"
reqwest = { version = "0.11", features = ["blocking", "json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"

Expand All @@ -35,7 +35,12 @@ ci = ["github"]
# The installers to generate for each app
installers = ["shell", "homebrew"]
# 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",
]
# Publish jobs to run in CI
pr-run-mode = "plan"
# A GitHub repo to push Homebrew formulas to
Expand All @@ -47,4 +52,11 @@ publish-jobs = ["homebrew"]
publish = false
push = true
tag = true
pre-release-hook = ["git", "cliff", "-o", "CHANGELOG.md", "--tag", "{{version}}" ]
pre-release-hook = [
"git",
"cliff",
"-o",
"CHANGELOG.md",
"--tag",
"{{version}}",
]

0 comments on commit 1c62203

Please sign in to comment.