fix: bump vers

This commit is contained in:
veeso
2024-10-02 10:33:42 +02:00
parent d319a2fae4
commit c5f76ec51c
2 changed files with 9 additions and 35 deletions

42
Cargo.lock generated
View File

@@ -2416,18 +2416,6 @@ version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
[[package]]
name = "remotefs"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8df5d94ca7480505315216544f145f358b7609781beef33a9149ecd9be44a5b"
dependencies = [
"chrono",
"log",
"thiserror",
"wildmatch",
]
[[package]] [[package]]
name = "remotefs" name = "remotefs"
version = "0.3.0" version = "0.3.0"
@@ -2448,25 +2436,12 @@ dependencies = [
"chrono", "chrono",
"log", "log",
"path-slash 0.1.5", "path-slash 0.1.5",
"remotefs 0.3.0", "remotefs",
"rust-s3", "rust-s3",
"thiserror", "thiserror",
"users", "users",
] ]
[[package]]
name = "remotefs-ftp"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1727502e84b81b54d93ddd6f56eeed9b3cb0c7e2d3c888a40e2df7c7a7ca4371"
dependencies = [
"log",
"path-slash 0.1.5",
"remotefs 0.2.0",
"suppaftp",
"users",
]
[[package]] [[package]]
name = "remotefs-ftp" name = "remotefs-ftp"
version = "0.2.0" version = "0.2.0"
@@ -2475,7 +2450,7 @@ checksum = "86b36cc2d369fa47f11cfa4986fea304934983804e43a1f7e77970060bea66bb"
dependencies = [ dependencies = [
"log", "log",
"path-slash 0.1.5", "path-slash 0.1.5",
"remotefs 0.3.0", "remotefs",
"suppaftp", "suppaftp",
"users", "users",
] ]
@@ -2493,7 +2468,7 @@ dependencies = [
"lazy-regex", "lazy-regex",
"log", "log",
"path-slash 0.2.1", "path-slash 0.2.1",
"remotefs 0.3.0", "remotefs",
"tar", "tar",
"tempfile", "tempfile",
"thiserror", "thiserror",
@@ -2511,7 +2486,7 @@ dependencies = [
"libc", "libc",
"log", "log",
"pavao", "pavao",
"remotefs 0.3.0", "remotefs",
"windows-sys 0.59.0", "windows-sys 0.59.0",
] ]
@@ -2525,7 +2500,7 @@ dependencies = [
"lazy-regex", "lazy-regex",
"log", "log",
"path-slash 0.2.1", "path-slash 0.2.1",
"remotefs 0.3.0", "remotefs",
"ssh2", "ssh2",
"ssh2-config", "ssh2-config",
"users", "users",
@@ -2546,7 +2521,7 @@ dependencies = [
"mime", "mime",
"nonempty", "nonempty",
"quick-xml 0.31.0", "quick-xml 0.31.0",
"remotefs 0.3.0", "remotefs",
"rustydav", "rustydav",
"thiserror", "thiserror",
"time", "time",
@@ -3443,10 +3418,9 @@ dependencies = [
"pretty_assertions", "pretty_assertions",
"rand", "rand",
"regex", "regex",
"remotefs 0.3.0", "remotefs",
"remotefs-aws-s3", "remotefs-aws-s3",
"remotefs-ftp 0.1.4", "remotefs-ftp",
"remotefs-ftp 0.2.0",
"remotefs-kube", "remotefs-kube",
"remotefs-smb", "remotefs-smb",
"remotefs-ssh", "remotefs-ssh",

View File

@@ -103,7 +103,7 @@ remotefs-smb = { version = "^0.3", optional = true }
[target."cfg(target_family = \"windows\")"] [target."cfg(target_family = \"windows\")"]
[target."cfg(target_family = \"windows\")".dependencies] [target."cfg(target_family = \"windows\")".dependencies]
remotefs-ftp = { version = "^0.1.2", features = ["native-tls"] } remotefs-ftp = { version = "^0.2", features = ["native-tls"] }
remotefs-ssh = "^0.4" remotefs-ssh = "^0.4"
[target."cfg(target_family = \"unix\")"] [target."cfg(target_family = \"unix\")"]