|
1 | 1 | [package] |
2 | 2 | name = "rustic_backend" |
3 | | -version = "0.5.2" |
| 3 | +version = "0.5.3" |
4 | 4 | authors = ["the rustic-rs team"] |
5 | 5 | categories = ["data-structures", "filesystem"] |
6 | 6 | documentation = "https://docs.rs/rustic_backend" |
@@ -57,54 +57,54 @@ log = { workspace = true } |
57 | 57 |
|
58 | 58 | # other dependencies |
59 | 59 | bytes = { workspace = true } |
60 | | -derive_setters = "0.1.6" |
61 | | -humantime = "2.2.0" |
| 60 | +derive_setters = "0.1.8" |
| 61 | +humantime = "2.3.0" |
62 | 62 | itertools = "0.14.0" |
63 | 63 | strum = "0.27" |
64 | 64 | strum_macros = "0.27" |
65 | 65 |
|
66 | 66 | # general / backend choosing |
67 | 67 | hex = { version = "0.4.3", features = ["serde"] } |
68 | 68 | serde = { version = "1.0.219" } |
69 | | -url = "2.5.4" |
| 69 | +url = "2.5.7" |
70 | 70 |
|
71 | 71 | # cli support |
72 | | -clap = { version = "4.5.37", optional = true, features = ["derive", "env", "wrap_help"] } |
| 72 | +clap = { version = "4.5.47", optional = true, features = ["derive", "env", "wrap_help"] } |
73 | 73 | conflate = { version = "0.3.3", optional = true } |
74 | 74 |
|
75 | 75 | # local backend |
76 | 76 | aho-corasick = { workspace = true } |
77 | 77 | walkdir = "2.5.0" |
78 | 78 |
|
79 | 79 | # rest backend |
80 | | -backon = { version = "1.5.0", optional = true } |
81 | | -reqwest = { version = "0.12.15", default-features = false, features = ["json", "rustls-tls-native-roots", "stream", "blocking"], optional = true } |
| 80 | +backon = { version = "1.5.2", optional = true } |
| 81 | +reqwest = { version = "0.12.23", default-features = false, features = ["json", "rustls-tls-native-roots", "stream", "blocking"], optional = true } |
82 | 82 |
|
83 | 83 | # rclone backend |
84 | | -rand = { version = "0.9.1", optional = true } |
| 84 | +rand = { version = "0.9.2", optional = true } |
85 | 85 | semver = { version = "1.0.26", optional = true } |
86 | 86 |
|
87 | 87 | # opendal backend |
88 | 88 | bytesize = "2.0.1" |
89 | | -rayon = { version = "1.10.0", optional = true } |
90 | | -tokio = { version = "1.44.2", optional = true, default-features = false } |
91 | | -typed-path = { version = "0.10.0", optional = true } |
| 89 | +rayon = { version = "1.11.0", optional = true } |
| 90 | +tokio = { version = "1.47.1", optional = true, default-features = false } |
| 91 | +typed-path = { version = "0.11.0", optional = true } |
92 | 92 |
|
93 | 93 | [target.'cfg(not(windows))'.dependencies] |
94 | 94 | # opendal backend |
95 | 95 | # - sftp is not supported on windows, see https://github.com/apache/incubator-opendal/issues/2963 |
96 | 96 | # - ftp is temporarily disabled due to dependency on aws-lc-sys |
97 | | -opendal = { version = "0.53.1", features = ["services-b2", "services-sftp", "services-swift", "services-azblob", "services-azdls", "services-cos", "services-fs", "services-dropbox", "services-gdrive", "services-gcs", "services-ghac", "services-http", "services-ipmfs", "services-memory", "services-obs", "services-onedrive", "services-oss", "services-s3", "services-webdav", "services-webhdfs", "services-azfile", "layers-blocking", "layers-throttle", "services-yandex-disk"], optional = true } |
| 97 | +opendal = { version = "0.53.3", features = ["services-b2", "services-sftp", "services-swift", "services-azblob", "services-azdls", "services-cos", "services-fs", "services-dropbox", "services-gdrive", "services-gcs", "services-ghac", "services-http", "services-ipmfs", "services-memory", "services-obs", "services-onedrive", "services-oss", "services-s3", "services-webdav", "services-webhdfs", "services-azfile", "layers-blocking", "layers-throttle", "services-yandex-disk"], optional = true } |
98 | 98 |
|
99 | 99 | [target.'cfg(windows)'.dependencies] |
100 | 100 | # opendal backend |
101 | 101 | # - ftp is temporarily disabled due to dependency on aws-lc-sys |
102 | | -opendal = { version = "0.53.1", features = ["services-b2", "services-swift", "services-azblob", "services-azdls", "services-cos", "services-fs", "services-dropbox", "services-gdrive", "services-gcs", "services-ghac", "services-http", "services-ipmfs", "services-memory", "services-obs", "services-onedrive", "services-oss", "services-s3", "services-webdav", "services-webhdfs", "services-azfile", "layers-blocking", "layers-throttle", "services-yandex-disk"], optional = true } |
| 102 | +opendal = { version = "0.53.3", features = ["services-b2", "services-swift", "services-azblob", "services-azdls", "services-cos", "services-fs", "services-dropbox", "services-gdrive", "services-gcs", "services-ghac", "services-http", "services-ipmfs", "services-memory", "services-obs", "services-onedrive", "services-oss", "services-s3", "services-webdav", "services-webhdfs", "services-azfile", "layers-blocking", "layers-throttle", "services-yandex-disk"], optional = true } |
103 | 103 |
|
104 | 104 | [dev-dependencies] |
105 | 105 | anyhow = { workspace = true } |
106 | 106 | rstest = { workspace = true } |
107 | | -toml = "0.8.20" |
| 107 | +toml = "0.9.5" |
108 | 108 |
|
109 | 109 | [lints] |
110 | 110 | workspace = true |
0 commit comments