# 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 believe there's an error in this file please file an # issue against the rust-lang/cargo repository. If you're # editing this file be aware that the upstream Cargo.toml # will likely look very different (and much more reasonable) [package] edition = "2018" name = "tftp_server" version = "0.0.3" authors = ["Darin Minamoto "] description = "A TFTP server implementation in Rust using mio" readme = "README.md" keywords = ["network", "tftp", "protocol", "mio"] license = "MIT" repository = "https://github.com/DarinM223/tftp-server" [lib] name = "tftp_server" path = "src/lib.rs" [[test]] name = "tftp-packet-tests" path = "tests/test_packet.rs" [[test]] name = "tftp-server-tests" path = "tests/test_server.rs" harness = false [dependencies.byteorder] version = "0.5" [dependencies.env_logger] version = "0.3.5" [dependencies.log] version = "0.4.8" [dependencies.mio] version = "0.6" [dependencies.mio-extras] version = "2.0.5" [dependencies.rand] version = "0.3" [dev-dependencies.env_logger] version = "0.3.5" [dev-dependencies.getopts] version = "0.2"