Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3793b8f

Browse files
committedJun 14, 2024·
Fix newlines
1 parent 2bf0644 commit 3793b8f

File tree

4 files changed

+6
-10
lines changed

4 files changed

+6
-10
lines changed
 

‎.cargo/config.toml

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
[alias]
2-
xtask = "run --package xtask --"
3-
41
# On Windows MSVC, statically link the C runtime so that the resulting EXE does
52
# not depend on the vcruntime DLL.
63
[target.'cfg(all(windows, target_env = "msvc"))']

‎.gitattributes

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
/contrib/completions/* eol=lf linguist-generated=true text
2-
/contrib/completions/README.md -eol -linguist-generated -text
3-
/init.fish eol=lf text
4-
/templates/*.txt eol=lf text
5-
/zoxide.plugin.zsh eol=lf text
1+
* text=auto eol=lf
2+
3+
/contrib/completions/** linguist-generated
4+
/contrib/completions/README.md -linguist-generated

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ bincode = "1.3.1"
2222
clap = { version = "4.3.0", features = ["derive"] }
2323
color-print = "0.3.4"
2424
dirs = "5.0.0"
25-
dunce = "1.0.4"
25+
dunce = "1.0.1"
2626
fastrand = "2.0.0"
2727
glob = "0.3.0"
2828
ouroboros = "0.18.3"

‎rustfmt.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
group_imports = "StdExternalCrate"
22
imports_granularity = "Module"
3-
newline_style = "Native"
3+
newline_style = "Unix"
44
use_field_init_shorthand = true
55
use_small_heuristics = "Max"
66
use_try_shorthand = true

0 commit comments

Comments
 (0)
Please sign in to comment.