mirror of
https://github.com/msfjarvis/gitice
synced 2025-08-15 00:27:01 +05:30
chore: reformat TOML files with Taplo
This commit is contained in:
parent
b6691aa68b
commit
00cd331a4d
2 changed files with 13 additions and 5 deletions
14
Cargo.toml
14
Cargo.toml
|
@ -1,7 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
name = "gitice"
|
name = "gitice"
|
||||||
version = "2.0.2"
|
version = "2.0.2"
|
||||||
authors = ["Harsh Shandilya <me@msfjarvis.dev>", "Amogh Lele <amolele@gmail.com>"]
|
authors = [
|
||||||
|
"Harsh Shandilya <me@msfjarvis.dev>",
|
||||||
|
"Amogh Lele <amolele@gmail.com>",
|
||||||
|
]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Freeze your local git repositories for easy restoration"
|
description = "Freeze your local git repositories for easy restoration"
|
||||||
repository = "https://github.com/msfjarvis/gitice"
|
repository = "https://github.com/msfjarvis/gitice"
|
||||||
|
@ -15,7 +18,7 @@ include = ["src/**/*", "LICENSE-*", "README.md"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.71"
|
anyhow = "1.0.71"
|
||||||
clap = { version = "4.3.8", features = [ "color", "deprecated", "derive" ] }
|
clap = { version = "4.3.8", features = ["color", "deprecated", "derive"] }
|
||||||
gix = "0.46.0"
|
gix = "0.46.0"
|
||||||
serde = { version = "1.0.164", default-features = false }
|
serde = { version = "1.0.164", default-features = false }
|
||||||
serde_derive = "1.0.164"
|
serde_derive = "1.0.164"
|
||||||
|
@ -43,4 +46,9 @@ ci = ["github"]
|
||||||
# The installers to generate for each app
|
# The installers to generate for each app
|
||||||
installers = ["shell", "powershell"]
|
installers = ["shell", "powershell"]
|
||||||
# Target platforms to build apps for (Rust target-triple syntax)
|
# Target platforms to build apps for (Rust target-triple syntax)
|
||||||
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
|
targets = [
|
||||||
|
"x86_64-unknown-linux-gnu",
|
||||||
|
"x86_64-apple-darwin",
|
||||||
|
"x86_64-pc-windows-msvc",
|
||||||
|
"aarch64-apple-darwin",
|
||||||
|
]
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[toolchain]
|
[toolchain]
|
||||||
channel = "nightly-2023-06-10"
|
channel = "nightly-2023-06-10"
|
||||||
components = [ "clippy", "rustfmt", "rust-src" ]
|
components = ["clippy", "rustfmt", "rust-src"]
|
||||||
targets = [ "x86_64-unknown-linux-gnu" ]
|
targets = ["x86_64-unknown-linux-gnu"]
|
||||||
profile = "minimal"
|
profile = "minimal"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue