Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/crates/bevy_dylib/Cargo.toml
6595 views
1
[package]
2
name = "bevy_dylib"
3
version = "0.17.0-dev"
4
edition = "2024"
5
description = "Force the Bevy Engine to be dynamically linked for faster linking"
6
homepage = "https://bevy.org"
7
repository = "https://github.com/bevyengine/bevy"
8
license = "MIT OR Apache-2.0"
9
keywords = ["bevy"]
10
11
[lib]
12
crate-type = ["dylib"]
13
14
[dependencies]
15
bevy_internal = { path = "../bevy_internal", version = "0.17.0-dev", default-features = false }
16
17
[lints]
18
workspace = true
19
20
[package.metadata.docs.rs]
21
rustdoc-args = ["-Zunstable-options", "--generate-link-to-definition"]
22
all-features = true
23
24