-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
37 lines (30 loc) · 991 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
34
35
36
37
[package]
name = "pcsc-rs"
version = "1.4.13"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
arc-swap = "=1.7.1"
cfg-if = "=1.0.0"
dotenvy = "=0.15.7"
itertools = "=0.14.0"
regex = "=1.11.1"
rust_socketio = "=0.6.0"
# https://github.com/jaemk/self_update/issues/136
self_update = "=0.42.0"
serde = { version = "=1.0.218", features = ["derive"] }
serde_derive = "=1.0.218"
serde_json = "=1.0.140"
sysinfo = { version = "=0.33.1", default-features = false, features = ["disk", "multithread", "system"] }
[build-dependencies]
git2 = { version = "=0.20.0", default-features = false }
[target.'cfg(windows)'.build-dependencies]
winres = "=0.1.12"
[target.'cfg(not(any(target_os = "windows", target_os = "macos", target_os = "ios")))'.dependencies]
openssl = { version = "=0.10.71", features = ["vendored"] }
[lints.clippy]
pedantic = "warn"
[profile.release]
strip = "symbols"
lto = "fat"
codegen-units = 1