diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..cec79530 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1 @@ +See `README.md` for contribution guidelines. We use the same AI usage policy as Bevy - [see the AI usage policy here](https://bevy.org/learn/contribute/policies/ai/). diff --git a/Cargo.lock b/Cargo.lock index d0be125b..84c39d2a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -241,6 +241,10 @@ dependencies = [ "typesize", ] +[[package]] +name = "aeronet_webrtc" +version = "0.0.1" + [[package]] name = "aeronet_websocket" version = "0.21.0" diff --git a/README.md b/README.md index bd4daf42..8d481bfb 100644 --- a/README.md +++ b/README.md @@ -227,11 +227,15 @@ Currently, the dev container requires Linux on Wayland with a GPU, as this is re When submitting a pull request, make sure that all continuous integration (CI) checks pass. CI is intentionally set to be as strict as reasonably possible, to keep the quality of code in `main` high. +## AI usage + +We follow the same AI usage policy as Bevy - [see the AI usage policy here](https://bevy.org/learn/contribute/policies/ai/). + # Versions | `bevy` | `aeronet` | |--------|---------------------| -| `0.19` | `0.21.0` | +| `0.19` | `0.21.0` - `0.22.0` | | `0.18` | `0.19.0` | | `0.17` | `0.17.0` - `0.18.0` | | `0.16` | `0.13.0` - `0.16.0` | diff --git a/crates/aeronet_webrtc/Cargo.toml b/crates/aeronet_webrtc/Cargo.toml new file mode 100644 index 00000000..65ceebef --- /dev/null +++ b/crates/aeronet_webrtc/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "aeronet_webrtc" +version = "0.0.1" +edition.workspace = true +rust-version.workspace = true +description = "WebRTC IO layer implementation for `aeronet`" +repository.workspace = true +license.workspace = true +keywords.workspace = true +categories.workspace = true + +[lints] +workspace = true diff --git a/crates/aeronet_webrtc/README.md b/crates/aeronet_webrtc/README.md new file mode 100644 index 00000000..69daa673 --- /dev/null +++ b/crates/aeronet_webrtc/README.md @@ -0,0 +1 @@ +Reserved for aeronet diff --git a/crates/aeronet_webrtc/src/lib.rs b/crates/aeronet_webrtc/src/lib.rs new file mode 100644 index 00000000..51c52db4 --- /dev/null +++ b/crates/aeronet_webrtc/src/lib.rs @@ -0,0 +1,2 @@ +#![cfg_attr(docsrs_aeronet, feature(doc_cfg))] +#![doc = include_str!("../README.md")]