Skip to content

Commit 7deeaa4

Browse files
committed
feat: size calculator for remote file systems (#3170)
1 parent a3fc9a0 commit 7deeaa4

File tree

53 files changed

+711
-557
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+711
-557
lines changed

Cargo.lock

Lines changed: 47 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ ratatui = { version = "0.29.0", features = [ "unstable-rendered-line
4444
regex = "1.11.2"
4545
russh = { version = "0.54.3", default-features = false, features = [ "ring", "rsa" ] }
4646
scopeguard = "1.2.0"
47-
serde = { version = "1.0.219", features = [ "derive" ] }
48-
serde_json = "1.0.143"
47+
serde = { version = "1.0.223", features = [ "derive" ] }
48+
serde_json = "1.0.145"
4949
syntect = { version = "5.2.0", default-features = false, features = [ "parsing", "plist-load", "regex-onig" ] }
5050
tokio = { version = "1.47.1", features = [ "full" ] }
5151
tokio-stream = "0.1.17"

yazi-actor/Cargo.toml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yazi-actor"
3-
version = "25.6.11"
3+
version = "25.9.15"
44
edition = "2024"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]
@@ -13,21 +13,21 @@ default = [ "vendored-lua" ]
1313
vendored-lua = [ "mlua/vendored" ]
1414

1515
[dependencies]
16-
yazi-binding = { path = "../yazi-binding", version = "25.6.11" }
17-
yazi-boot = { path = "../yazi-boot", version = "25.6.11" }
18-
yazi-config = { path = "../yazi-config", version = "25.6.11" }
19-
yazi-core = { path = "../yazi-core", version = "25.6.11" }
20-
yazi-dds = { path = "../yazi-dds", version = "25.6.11" }
21-
yazi-fs = { path = "../yazi-fs", version = "25.6.11" }
22-
yazi-macro = { path = "../yazi-macro", version = "25.6.11" }
23-
yazi-parser = { path = "../yazi-parser", version = "25.6.11" }
24-
yazi-plugin = { path = "../yazi-plugin", version = "25.6.11" }
25-
yazi-proxy = { path = "../yazi-proxy", version = "25.6.11" }
26-
yazi-scheduler = { path = "../yazi-scheduler", version = "25.6.11" }
27-
yazi-shared = { path = "../yazi-shared", version = "25.6.11" }
28-
yazi-term = { path = "../yazi-term", version = "25.6.11" }
29-
yazi-watcher = { path = "../yazi-watcher", version = "25.6.11" }
30-
yazi-widgets = { path = "../yazi-widgets", version = "25.6.11" }
16+
yazi-binding = { path = "../yazi-binding", version = "25.9.15" }
17+
yazi-boot = { path = "../yazi-boot", version = "25.9.15" }
18+
yazi-config = { path = "../yazi-config", version = "25.9.15" }
19+
yazi-core = { path = "../yazi-core", version = "25.9.15" }
20+
yazi-dds = { path = "../yazi-dds", version = "25.9.15" }
21+
yazi-fs = { path = "../yazi-fs", version = "25.9.15" }
22+
yazi-macro = { path = "../yazi-macro", version = "25.9.15" }
23+
yazi-parser = { path = "../yazi-parser", version = "25.9.15" }
24+
yazi-plugin = { path = "../yazi-plugin", version = "25.9.15" }
25+
yazi-proxy = { path = "../yazi-proxy", version = "25.9.15" }
26+
yazi-scheduler = { path = "../yazi-scheduler", version = "25.9.15" }
27+
yazi-shared = { path = "../yazi-shared", version = "25.9.15" }
28+
yazi-term = { path = "../yazi-term", version = "25.9.15" }
29+
yazi-watcher = { path = "../yazi-watcher", version = "25.9.15" }
30+
yazi-widgets = { path = "../yazi-widgets", version = "25.9.15" }
3131

3232
# External dependencies
3333
anyhow = { workspace = true }

yazi-adapter/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yazi-adapter"
3-
version = "25.6.11"
3+
version = "25.9.15"
44
edition = "2024"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]
@@ -9,11 +9,11 @@ homepage = "https://yazi-rs.github.io"
99
repository = "https://github.com/sxyazi/yazi"
1010

1111
[dependencies]
12-
yazi-config = { path = "../yazi-config", version = "25.6.11" }
13-
yazi-fs = { path = "../yazi-fs", version = "25.6.11" }
14-
yazi-macro = { path = "../yazi-macro", version = "25.6.11" }
15-
yazi-shared = { path = "../yazi-shared", version = "25.6.11" }
16-
yazi-term = { path = "../yazi-term", version = "25.6.11" }
12+
yazi-config = { path = "../yazi-config", version = "25.9.15" }
13+
yazi-fs = { path = "../yazi-fs", version = "25.9.15" }
14+
yazi-macro = { path = "../yazi-macro", version = "25.9.15" }
15+
yazi-shared = { path = "../yazi-shared", version = "25.9.15" }
16+
yazi-term = { path = "../yazi-term", version = "25.9.15" }
1717

1818
# External dependencies
1919
ansi-to-tui = { workspace = true }

yazi-binding/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yazi-binding"
3-
version = "25.6.11"
3+
version = "25.9.15"
44
edition = "2024"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]
@@ -13,11 +13,11 @@ default = [ "vendored-lua" ]
1313
vendored-lua = [ "mlua/vendored" ]
1414

1515
[dependencies]
16-
yazi-adapter = { path = "../yazi-adapter", version = "25.6.11" }
17-
yazi-config = { path = "../yazi-config", version = "25.6.11" }
18-
yazi-fs = { path = "../yazi-fs", version = "25.6.11" }
19-
yazi-macro = { path = "../yazi-macro", version = "25.6.11" }
20-
yazi-shared = { path = "../yazi-shared", version = "25.6.11" }
16+
yazi-adapter = { path = "../yazi-adapter", version = "25.9.15" }
17+
yazi-config = { path = "../yazi-config", version = "25.9.15" }
18+
yazi-fs = { path = "../yazi-fs", version = "25.9.15" }
19+
yazi-macro = { path = "../yazi-macro", version = "25.9.15" }
20+
yazi-shared = { path = "../yazi-shared", version = "25.9.15" }
2121

2222
# External dependencies
2323
ansi-to-tui = { workspace = true }

0 commit comments

Comments
 (0)