-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (27 loc) · 853 Bytes
/
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
[package]
name = "fast-file-tracker"
version = "0.1.0"
authors = ["Ben Edridge <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
twox-hash = "1.6.0"
rayon = "1.5.0"
redis = "0.17.0"
walkdir = "2"
jwalk = "0.5"
# Required for SQLite database
sqlx = { version = "0.4.1", default-features = false, features = [ "sqlite", "runtime-tokio-native-tls", "macros"] }
tokio = { version = "0.2", features = ["full"] }
uuid = { version = "0.8.1", features = ["v4"] }
rusqlite = { version = "0.24", features = ["backup"] }
[profile.release]
debug = false
debug-assertions = false
opt-level = "z"
lto = "fat"
codegen-units = 1
# https://deterministic.space/high-performance-rust.html
panic = "abort"
[profile.dev.package."*"]
opt-level = "z"