# 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 = "mptcp" version = "0.1.5" description = "A helper crate to create MPTCP sockets" readme = "README.md" license-file = "LICENSE" repository = "https://github.com/gdetal/mptcp-rs" [[example]] name = "server-std" required-features = ["std"] [[example]] name = "client-std" required-features = ["std"] [[example]] name = "server-tokio" required-features = ["tokio"] [[example]] name = "client-tokio" required-features = ["tokio"] [[example]] name = "client-async-std" required-features = ["async-std"] [dependencies.async-std] version = "1" optional = true [dependencies.async-trait] version = "0.1" optional = true [dependencies.lazy_static] version = "1.4.0" [dependencies.libc] version = "0.2.153" [dependencies.semver] version = "1.0.22" [dependencies.socket2] version = "0.5.6" [dependencies.sysctl] version = "0.5.5" [dependencies.sysinfo] version = "0.30.11" [dependencies.tokio] version = "1" features = ["net"] optional = true [dev-dependencies.async-h1] version = "2.3.4" [dev-dependencies.axum] version = "0.7.5" [dev-dependencies.bytes] version = "1.6.0" [dev-dependencies.http-body-util] version = "0.1.1" [dev-dependencies.http-types] version = "2.12.0" [dev-dependencies.hyper] version = "1.3.1" features = ["client"] [dev-dependencies.hyper-util] version = "0.1.3" features = [ "tokio", "server", ] [dev-dependencies.tokio] version = "1" features = ["full"] [dev-dependencies.tower-service] version = "0.3.2" [features] async-std = [ "dep:async-std", "dep:async-trait", ] default = ["std"] std = [] tokio = [ "dep:tokio", "dep:async-trait", ]