-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
106 lines (96 loc) · 2.29 KB
/
Copy pathCargo.toml
File metadata and controls
106 lines (96 loc) · 2.29 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[package]
name = "dusk"
version = "0.1.0"
authors = ["Luracasmus"]
edition = "2024"
rust-version = "1.90.0"
description = "A small, intuitive video player and editor in Rust"
repository = "https://github.com/Luracasmus/dusk"
keywords = ["ffmpeg", "video", "editor"]
categories = [
"rendering",
"multimedia",
"multimedia::video",
# "multimedia::audio",
# "multimedia::images",
# "multimedia::encoding",
# "encoding"
]
[features]
default = ["wayland"]
wayland = ["bevy/wayland"]
x11 = ["bevy/x11"]
debug = ["bevy/debug", "bevy/bevy_log", "bevy/sysinfo_plugin"]
[dependencies]
bevy = { version = "0.17.2", default-features = false, features = [
"std",
"async_executor",
"bevy_asset",
"bevy_color",
"bevy_core_pipeline",
"bevy_render",
"bevy_image",
"bevy_camera",
"bevy_sprite",
"bevy_sprite_render",
"bevy_state",
"bevy_window",
"bevy_winit",
"multi_threaded",
"reflect_auto_register",
] }
bevy_file_dialog = "0.9.0"
ffmpeg-sidecar = { version = "2.2.0", default-features = false }
rfd = "0.15.4"
[profile.dev]
debug = false
[profile.release]
lto = "thin"
strip = "symbols"
codegen-units = 1
[profile.release.package."*"]
opt-level = 3
debug = false
debug-assertions = false
overflow-checks = false
strip = "symbols"
codegen-units = 1
[profile.dev.package."*"]
debug = false
opt-level = 3
codegen-units = 1
[lints.rust]
unsafe_code = "deny"
[lints.clippy]
cargo = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
filetype_is_file = "warn"
float_cmp_const = "warn"
fn_to_numeric_cast_any = "warn"
format_push_string = "warn"
get_unwrap = "warn"
mem_forget = "warn"
unneeded_field_pattern = "warn"
unseparated_literal_suffix = "warn"
string_to_string = "warn"
suspicious_xor_used_as_pow = "warn"
rc_mutex = "warn"
ref_patterns = "warn"
rest_pat_in_fully_bound_structs = "warn"
cargo_common_metadata = "allow"
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
cognitive_complexity = "allow"
integer_division = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
needless_pass_by_value = "allow"
too_many_lines = "allow"
wildcard_imports = "allow"
needless_for_each = "allow"
too_many_arguments = "allow"
type_complexity = "allow"