Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -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/).
4 changes: 4 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` |
Expand Down
13 changes: 13 additions & 0 deletions crates/aeronet_webrtc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions crates/aeronet_webrtc/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Reserved for aeronet
2 changes: 2 additions & 0 deletions crates/aeronet_webrtc/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#![cfg_attr(docsrs_aeronet, feature(doc_cfg))]
#![doc = include_str!("../README.md")]