mirror of
https://github.com/sxyazi/yazi.git
synced 2024-12-22 08:11:33 +03:00
22 lines
620 B
TOML
22 lines
620 B
TOML
|
[package]
|
||
|
name = "yazi-fs"
|
||
|
version = "0.3.0"
|
||
|
edition = "2021"
|
||
|
license = "MIT"
|
||
|
authors = [ "sxyazi <sxyazi@gmail.com>" ]
|
||
|
description = "Yazi File System"
|
||
|
homepage = "https://yazi-rs.github.io"
|
||
|
repository = "https://github.com/sxyazi/yazi"
|
||
|
|
||
|
[dependencies]
|
||
|
yazi-config = { path = "../yazi-config", version = "0.3.0" }
|
||
|
yazi-proxy = { path = "../yazi-proxy", version = "0.3.0" }
|
||
|
yazi-shared = { path = "../yazi-shared", version = "0.3.0" }
|
||
|
|
||
|
# External dependencies
|
||
|
anyhow = "1.0.86"
|
||
|
futures = "0.3.30"
|
||
|
ratatui = "0.27.0"
|
||
|
regex = "1.10.5"
|
||
|
tokio = { version = "1.39.2", features = [ "full" ] }
|