-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
34 lines (27 loc) · 1.04 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "revy"
version = "0.17.0"
authors = ["rerun.io <[email protected]>"]
categories = ["game-development", "development-tools", "development-tools::debugging"]
description = "Proof-of-concept time-travel debugger for Bevy, built with Rerun."
edition = "2021"
homepage = "https://rerun.io"
include = ["LICENSE-APACHE", "LICENSE-MIT", "**/*.rs", "Cargo.toml"]
keywords = ["rerun", "bevy", "debugger", "time-travel", "gamedev"]
license = "MIT OR Apache-2.0"
publish = true
readme = "README.md"
repository = "https://github.com/rerun-io/revy"
rust-version = "1.80"
[package.metadata.docs.rs]
all-features = true
targets = ["x86_64-unknown-linux-gnu", "wasm32-unknown-unknown"]
[dependencies]
rerun = { version = "0.17", default-features = false, features = ["sdk", "image", "glam"] }
bevy = { version = "0.14" }
# bevy = { path = "../../bevyengine/bevy/" }
itertools = "0.13"
ron = "0.8"
[dev-dependencies]
bevy = { version = "0.14", features = ["dynamic_linking"] }
# bevy = { path = "../../bevyengine/bevy/", features = ["dynamic_linking"] }