remote-fs 0.1.2

Unified async file operations over SMB, FTP, and SFTP
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "remote-fs"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unified async file operations over SMB, FTP, and SFTP"
readme = "README.md"
license = "MIT"

[features]
default = []
ftp = ["dep:async-ftp"]
full = [
    "smb",
    "ftp",
    "sftp",
]
sftp = [
    "dep:async-ssh2-tokio",
    "dep:russh-sftp",
]
smb = ["dep:smb2"]

[lib]
name = "remote_fs"
path = "src/lib.rs"

[[test]]
name = "ftp_offline"
path = "tests/integration/ftp_offline.rs"
required-features = ["ftp"]

[[test]]
name = "sftp_offline"
path = "tests/integration/sftp_offline.rs"
required-features = ["sftp"]

[[test]]
name = "smb_offline"
path = "tests/integration/smb_offline.rs"
required-features = ["smb"]

[dependencies.async-ftp]
version = "6"
optional = true
package = "async_ftp"

[dependencies.async-ssh2-tokio]
version = "0.13"
optional = true

[dependencies.async-trait]
version = "0.1"

[dependencies.russh-sftp]
version = "2"
optional = true

[dependencies.smb2]
version = "0.13"
optional = true

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "fs",
    "io-util",
    "rt-multi-thread",
    "macros",
    "net",
]

[dependencies.tokio-util]
version = "0.7"
features = ["io"]