Merge pull request #1742 from pop-os/mtp
Fix unsupported errors when copying large files over MTP
This commit is contained in:
commit
b895b07bb2
12 changed files with 671 additions and 216 deletions
14
Cargo.lock
generated
14
Cargo.lock
generated
|
|
@ -538,6 +538,12 @@ version = "1.1.2"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
||||
|
||||
[[package]]
|
||||
name = "atomic_float"
|
||||
version = "1.1.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "628d228f918ac3b82fe590352cc719d30664a0c13ca3a60266fe02c7132d480a"
|
||||
|
||||
[[package]]
|
||||
name = "atomicwrites"
|
||||
version = "0.4.2"
|
||||
|
|
@ -1349,12 +1355,12 @@ name = "cosmic-files"
|
|||
version = "1.0.9"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"atomic_float",
|
||||
"bzip2",
|
||||
"compio",
|
||||
"cosmic-client-toolkit",
|
||||
"cosmic-mime-apps",
|
||||
"dirs 6.0.0",
|
||||
"env_logger",
|
||||
"fastrand",
|
||||
"filetime",
|
||||
"flate2",
|
||||
|
|
@ -1379,6 +1385,7 @@ dependencies = [
|
|||
"notify-debouncer-full",
|
||||
"notify-rust",
|
||||
"num_cpus",
|
||||
"num_enum",
|
||||
"open",
|
||||
"ordermap",
|
||||
"paste",
|
||||
|
|
@ -1394,8 +1401,11 @@ dependencies = [
|
|||
"tar",
|
||||
"tempfile",
|
||||
"test-log",
|
||||
"thiserror 2.0.18",
|
||||
"tikv-jemallocator",
|
||||
"tokio",
|
||||
"tracing",
|
||||
"tracing-subscriber",
|
||||
"trash",
|
||||
"url",
|
||||
"uzers",
|
||||
|
|
@ -1963,7 +1973,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
checksum = "32e90c2accc4b07a8456ea0debdc2e7587bdd890680d71173a15d4ae604f6eef"
|
||||
dependencies = [
|
||||
"log",
|
||||
"regex",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
@ -1975,7 +1984,6 @@ dependencies = [
|
|||
"anstream",
|
||||
"anstyle",
|
||||
"env_filter",
|
||||
"jiff",
|
||||
"log",
|
||||
]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue