-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
80 lines (68 loc) · 1.7 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[package]
name = "bevy_advanced_decorum"
version = "0.1.0-dev"
authors = ["Han Damin <[email protected]>"]
description = "A highly customizable window decoration plugin for the Bevy engine, inspired by tauri-plugin-decorum"
edition = "2021"
rust-version = "1.81.0"
repository = "https://github.com/miniex/bevy_advanced_decorum"
homepage = "https://github.com/miniex/bevy_advanced_decorum"
documentation = ""
categories = ["game-engines", "graphics", "gui", "rendering"]
keywords = [
"bevy",
"decorum",
"bevy_advanced_decorum",
"decoration",
"winit",
"window",
]
license = "MIT OR Apache-2.0"
exclude = []
[features]
default = []
[dependencies]
cocoa = { version = "0.25.0" }
objc = { version = "0.2.7" }
rand = { version = "0.8.5" }
raw-window-handle = { version = "0.6.0" }
winit = { version = "0.29", features = ["rwh_06"] }
accesskit_winit = { version = "0.17", default-features = false, features = [
"rwh_06",
] }
[dependencies.bevy]
version = "0.14.2"
default-features = false
features = ["bevy_ui"]
[dev-dependencies.bevy]
version = "0.14.2"
default-features = false
features = [
"bevy_asset",
"bevy_core_pipeline",
"bevy_pbr",
"bevy_render",
"bevy_ui",
"x11",
"tonemapping_luts",
"ktx2",
"zstd",
]
[[example]]
name = "macos"
[lints.clippy]
doc_markdown = "warn"
manual_let_else = "warn"
match_same_arms = "warn"
redundant_closure_for_method_calls = "warn"
redundant_else = "warn"
semicolon_if_nothing_returned = "warn"
type_complexity = "allow"
undocumented_unsafe_blocks = "warn"
unwrap_or_default = "warn"
ptr_as_ptr = "warn"
ptr_cast_constness = "warn"
ref_as_ptr = "warn"
[lints.rust]
missing_docs = "warn"
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(docsrs_dep)'] }