# 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 = "bevy_quinnet" version = "0.10.0" build = false exclude = ["assets/"] autobins = false autoexamples = false autotests = false autobenches = false description = "Bevy plugin for Client/Server multiplayer games using QUIC" documentation = "https://docs.rs/bevy_quinnet" readme = "README.md" keywords = [ "gamedev", "networking", "quic", "bevy", "plugin", ] categories = [ "game-development", "network-programming", ] license = "MIT OR Apache-2.0" repository = "https://github.com/Henauxg/bevy_quinnet" [lib] name = "bevy_quinnet" path = "src/lib.rs" [[example]] name = "breakout" path = "examples/breakout/breakout.rs" [[example]] name = "chat-client" path = "examples/chat/client.rs" [[example]] name = "chat-server" path = "examples/chat/server.rs" [[test]] name = "certificates" path = "tests/certificates.rs" [[test]] name = "channels" path = "tests/channels.rs" [[test]] name = "connection" path = "tests/connection.rs" [dependencies.base64] version = "0.13.1" [dependencies.bevy] version = "0.14" features = [] default-features = false [dependencies.bincode] version = "1.3.3" [dependencies.bytes] version = "1.5.0" [dependencies.futures] version = "0.3.24" [dependencies.futures-util] version = "0.3.24" [dependencies.quinn] version = "0.10.1" [dependencies.quinn-proto] version = "0.10.1" [dependencies.rcgen] version = "0.12.1" [dependencies.ring] version = "0.17.7" [dependencies.rustls] version = "0.21.0" features = [ "quic", "dangerous_configuration", ] default-features = false [dependencies.rustls-pemfile] version = "1.0.1" [dependencies.serde] version = "1.0.145" features = ["derive"] [dependencies.thiserror] version = "1.0.37" [dependencies.tokio] version = "1.36.0" features = [ "sync", "rt-multi-thread", "macros", ] [dependencies.tokio-util] version = "0.7.4" features = ["codec"] [dev-dependencies.bevy] version = "0.14" features = [ "bevy_asset", "bevy_audio", "vorbis", "bevy_winit", "bevy_render", "bevy_sprite", "bevy_ui", "bevy_text", "bevy_core_pipeline", "x11", "bevy_state", "serialize", "bevy_scene", "bevy_pbr", "ktx2", "zstd", ] default-features = false [dev-dependencies.rand] version = "0.8.5" [features] client = [] default = [ "shared-client-id", "client", "server", ] server = [] shared-client-id = []