vanth/Cargo.toml
Markus Scully 5afe3b61fb
♻️ bevy_vanth, vanth, vanth_derive, vanth_transport: Many changes in preparation for networking
- Created new crate `bevy_vanth` with basic plugin structure for Bevy integration.
- Refactored `Id` generation in `vanth` to use `OsRng` and removed redundant `to_u128_pair`/`from_u128_pair` methods.
- Moved networking functionality into new `net` module with `Node`, `Packet`, and `Message` types.
- Updated `vanth_derive` to use `proc-macro-crate` for reliable crate path resolution.
- Added `rand` dependency to replace custom ID generation logic.
- Updated `Cargo.toml`/`Cargo.lock` with new dependencies: `bevy_app`, `nix`, `cfg_aliases`, `proc-macro-crate`.
- Modified `README.md` with improved project description.
- Added commented clippy check in `flake.nix`.
- Added `smol`, `async-process`, and `async-trait` dependencies in root and `vanth` crate.
- Integrated `vanth` crate into `bevy_vanth` and added serde dependency.
- Reorganized test files into module structure for `cli` and `vanth` crates.
- Created new modules `compress` and `ecc` in `vanth`.
- Implemented `Node` with async `run` method and `Backend` trait for networking in `vanth`.
- Renamed `Memory` backend to `InMemoryStore` in `vanth` store module.
2025-09-08 10:06:00 +03:00

38 lines
931 B
TOML

[workspace]
members = ["crates/*"]
resolver = "3"
[workspace.package]
version = "0.1.0"
edition = "2024"
[workspace.metadata.crane]
name = "vanth"
[workspace.dependencies]
clap = { version = "4.5.42", features = ["derive"] }
bevy_ecs = "0.16.1"
bevy_app = "0.16.1"
bincode = "2.0.1"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
digest = "0.10.7"
blake3 = { version = "1.8.2", features = ["traits-preview"] }
quote = "1.0"
syn = { version = "2.0", features = ["full"] }
proc-macro2 = "1.0"
rusqlite = { version = "0.32.1", features = ["bundled"] }
tempfile = "3.12.0"
rand = "0.9.2"
rand_chacha = { version = "0.9.0", features = ["serde"] }
rand_core = "0.9.0"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
assert_cmd = "2.0.17"
proc-macro-crate = "3.3.0"
smol = "2.0.2"
async-process = "2.4.0"
async-trait = "0.1.89"
chacha20poly1305 = "0.10.1"
serde_bytes = "0.11.17"
serde_arrays = "0.2.0"