Skip to content

Commit

Permalink
style(build): Normalize TOML formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed Oct 11, 2023
1 parent 5e05fa9 commit f05d8a6
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ build = "build-aux/build.rs"

[[bin]]
name = "sile"
required-features = ["cli"]
required-features = [ "cli" ]

[dependencies]

Expand Down Expand Up @@ -53,20 +53,20 @@ required-features = ["cli"]
features = [ "build", "cargo", "git", "gitoxide" ]

[features]
default = ["cli", "bash", "elvish", "fish", "manpage", "powershell", "zsh"]
lua54 = ["mlua/lua54"]
lua53 = ["mlua/lua53"]
lua52 = ["mlua/lua52"]
lua51 = ["mlua/lua51"]
luajit = ["mlua/luajit"]
completions = ["cli", "clap_complete"]
cli = ["clap"]
bash = ["completions"]
elvish = ["completions"]
fish = ["completions"]
manpage = ["clap_mangen"]
powershell = ["completions"]
zsh = ["completions"]
default = [ "cli", "bash", "elvish", "fish", "manpage", "powershell", "zsh" ]
lua54 = [ "mlua/lua54" ]
lua53 = [ "mlua/lua53" ]
lua52 = [ "mlua/lua52" ]
lua51 = [ "mlua/lua51" ]
luajit = [ "mlua/luajit" ]
completions = [ "cli", "clap_complete" ]
cli = [ "clap" ]
bash = [ "completions" ]
elvish = [ "completions" ]
fish = [ "completions" ]
manpage = [ "clap_mangen" ]
powershell = [ "completions" ]
zsh = [ "completions" ]

[profile.release]
lto = true

0 comments on commit f05d8a6

Please sign in to comment.