-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
63 lines (56 loc) · 1.97 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
[package]
name = "vrc-log"
version = "0.9.2"
authors = ["Shayne Hartford <[email protected]>"]
edition = "2021"
description = "VRChat Local Cache Avatar ID Logger"
readme = "README.md"
homepage = "https://git.shaybox.com/vrc-log/releases/latest"
repository = "https://github.com/ShayBox/VRC-LOG"
license = "MIT"
keywords = ["vrchat", "local", "cache", "avatar", "logger"]
categories = ["config", "database", "filesystem", "games", "parsing"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
cached = { version = "0.54", optional = true }
chrono = "0.4"
colored = "2"
crossbeam = "0.8"
crossterm = { version = "0.28", optional = true }
discord-presence = { version = "1", optional = true }
indexmap = "2"
lazy-regex = "3"
notify = "7"
parking_lot = "0.12"
reqwest = { version = "0.12", features = ["blocking", "json"], optional = true }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sqlite = { version = "0.36", features = ["bundled"], optional = true }
strum = { version = "0.26", features = ["derive"] }
terminal-link = "0.1"
time = { version = "0.3", features = ["macros"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "time"] }
[features]
default = ["cache", "avtrdb", "vrcdb", "vrcds", "vrcwb", "title"]
# VRChat Avatar Database Providers
cache = ["dep:sqlite"]
avtrdb = ["dep:reqwest", "discord"]
vrcdb = ["dep:reqwest", "discord"]
vrcds = ["dep:reqwest", "discord"]
vrcwb = ["dep:reqwest", "discord"]
discord = ["dep:discord-presence", "dep:cached"]
title = ["dep:crossterm"]
# https://github.com/johnthagen/min-sized-rust
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size.
lto = true
codegen-units = 1
panic = "abort"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
multiple_crate_versions = "allow"