# 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 = "fast_websocket_client" version = "0.2.0" authors = ["Hyoungjun Son"] description = "A fast asynchronous websocket client built on top of fastwebsockets library" readme = "README.md" keywords = [ "async", "client", "tokio", "websocket", "wss", ] categories = [ "asynchronous", "concurrency", "network-programming", "web-programming", "web-programming::websocket", ] license = "Apache-2.0" repository = "https://github.com/Osteoporosis/fast_websocket_client/" [profile.release] opt-level = 3 lto = true codegen-units = 1 [[example]] name = "wss_client" path = "examples/wss_client.rs" [dependencies.fastwebsockets] version = "0.6" features = [ "simd", "upgrade", ] [dependencies.http-body-util] version = "0" [dependencies.hyper] version = "1" [dependencies.hyper-util] version = "0" [dependencies.rustls-pki-types] version = "1" [dependencies.serde] version = "1" [dependencies.serde_json] version = "1" [dependencies.simdutf8] version = "0" features = ["aarch64_neon"] [dependencies.tokio] version = "1" features = [ "net", "parking_lot", "rt", ] default-features = false [dependencies.tokio-rustls] version = "0.25" [dependencies.url] version = "2" [dependencies.utf-8] version = "0" [dependencies.webpki-roots] version = "0" [dev-dependencies.serde] version = "1" features = ["derive"] [dev-dependencies.tokio] version = "1" features = [ "macros", "parking_lot", "rt-multi-thread", "time", ] default-features = false [features] default = ["simd"] simd = []