[package] name = "sftp-protocol" version = "0.1.0" authors = ["Mike Cronce "] edition = "2021" description = "A pure Rust implementation of the SFTP protocol" license = "MIT" [dependencies] bitflags = "1" camino = { version = "1.0.7", features = ["serde"] } circular = "0.3" nix = "0.25" nom = "7" nom-derive = "0.10" serde = {version = "1", features = ["derive"]} serde_repr = "0.1" thiserror = "1" time = "0.3" uuid = {version = "1.2.2", features = ["serde", "v4"]} [dev-dependencies] bincode = "1.3.3" camino = { version = "1.0.7", features = ["proptest1", "serde"] } proptest = "1.0.0" rand = "0.8.5" test-strategy = "0.2.0"