-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
81 lines (75 loc) · 2.29 KB
/
Copy pathCargo.toml
File metadata and controls
81 lines (75 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
[package]
name = "birda"
version = "1.9.0"
edition = "2024"
rust-version = "1.92"
description = "CLI tool for bird species detection using BirdNET and Perch models"
license = "MIT"
repository = "https://github.com/tphakala/birda"
readme = "README.md"
keywords = ["birdnet", "audio", "machine-learning", "bioacoustics"]
categories = ["science", "multimedia::audio", "command-line-utilities"]
[features]
default = ["cuda"]
cuda = ["birdnet-onnx/cuda"]
load-dynamic = ["birdnet-onnx/load-dynamic"]
[dependencies]
birdnet-onnx = { version = "2.0.0-rc.15", features = ["load-dynamic"] }
ort = { version = "2.0.0-rc.12", default-features = false, features = ["load-dynamic"] }
symphonia = { git = "https://github.com/tphakala/Symphonia", branch = "feature/rf64-support", features = ["aac", "mp3", "flac", "wav", "pcm"] }
rubato = "4.0"
audioadapter-buffers = "4.0"
clap = { version = "4", features = ["derive", "env"] }
toml = "1.1"
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["rt-multi-thread", "sync", "fs", "macros", "io-util"] }
ctrlc = "3"
indicatif = "0.18"
directories = "6"
reqwest = { version = "0.13", features = ["stream", "rustls"], default-features = false }
futures-util = "0.3"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
thiserror = "2"
chrono = { version = "0.4", features = ["serde"] }
serde_json = "1"
hostname = "0.4"
hound = "3.5"
csv = "1.3"
parquet = "59"
arrow = "59"
semver = "1"
sha2 = "0.11"
tar = "0.4"
self-replace = "1"
flate2 = "1"
zip = { version = "8", default-features = false, features = ["deflate"] }
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[dev-dependencies]
tempfile = "3"
assert_cmd = "2"
predicates = "3"
serial_test = "3"
[lints.rust]
unsafe_code = "deny"
missing_docs = "warn"
[lints.clippy]
correctness = { level = "deny", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
unwrap_used = "warn"
expect_used = "warn"
panic = "warn"
todo = "warn"
unimplemented = "warn"
dbg_macro = "warn"
module_name_repetitions = "allow"
similar_names = "allow"
too_many_lines = "allow"
must_use_candidate = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
missing_const_for_fn = "allow"
multiple_crate_versions = "allow"