mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-12 15:16:35 +00:00
cargo: add same-file dependency
This commit is contained in:
parent
f10c5db739
commit
eaafde7119
3 changed files with 3 additions and 0 deletions
1
Cargo.lock
generated
1
Cargo.lock
generated
|
@ -1919,6 +1919,7 @@ dependencies = [
|
|||
"ref-cast",
|
||||
"regex",
|
||||
"rustix",
|
||||
"same-file",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"smallvec",
|
||||
|
|
|
@ -93,6 +93,7 @@ ref-cast = "1.0.23"
|
|||
regex = "1.11.1"
|
||||
rpassword = "7.3.1"
|
||||
rustix = { version = "0.38.39", features = ["fs"] }
|
||||
same-file = "1.0.6"
|
||||
scm-record = "0.4.0"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0.132"
|
||||
|
|
|
@ -65,6 +65,7 @@ rand_chacha = { workspace = true }
|
|||
rayon = { workspace = true }
|
||||
ref-cast = { workspace = true }
|
||||
regex = { workspace = true }
|
||||
same-file = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
smallvec = { workspace = true }
|
||||
|
|
Loading…
Reference in a new issue