-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (46 loc) · 1.46 KB
/
Cargo.toml
File metadata and controls
53 lines (46 loc) · 1.46 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
[workspace]
resolver = "2"
members = [
"openh264-sys2",
"openh264"
]
[workspace.package]
authors = ["Ralf Biedert <rb@xr.io>"]
edition = "2024"
license = "BSD-2-Clause"
repository = "https://github.com/ralfbiedert/openh264-rs"
rust-version = "1.85"
version = "0.9.3"
[workspace.dependencies]
# Ours
openh264-sys2 = { path = "openh264-sys2", version = "0.9.0", default-features = false }
# Others
libloading = "0.8.1"
sha2 = "0.10.8"
cc = "1.0"
walkdir = "2.3"
nasm-rs = "0.3.0"
wide = "0.7.30"
image = "0.25.5"
image-compare = "0.5.0"
mp4 = "0.14.0"
anyhow = "1.0.71"
rand = "0.9.2"
[workspace.lints.clippy]
correctness = { level = "deny", priority = -1 }
suspicious = { level = "deny", priority = -1 }
complexity = { level = "deny", priority = -1 }
perf = { level = "deny", priority = -1 }
style = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 } # We might want to disable this if it causes issues.
# Things we still allow
doc_markdown = "allow" # trips up on "OpenH264"
cast_possible_truncation = "allow" # we're doing too much math for this
cast_possible_wrap = "allow" # we're doing too much math for this
cast_precision_loss = "allow" # we're doing too much math for this
cast_sign_loss = "allow" # we're doing too much math for this
unreadable_literal = "allow" # only really used in tests where it doesn't matter
module_name_repetitions = "allow" # looks nicer
#[profile.release]
#debug = true