-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 933 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (32 loc) · 933 Bytes
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
[package]
name = "hk-core"
version.workspace = true
edition.workspace = true
[dependencies]
serde.workspace = true
serde_json.workspace = true
anyhow.workspace = true
chrono.workspace = true
uuid.workspace = true
rusqlite = { version = "0.32", features = ["bundled"] }
regex = "1"
toml = "0.8"
dirs = "6"
glob = "0.3"
jsonc-parser = { version = "0.32", features = ["serde", "serde_json", "cst"] }
lru = "0.12"
parking_lot = "0.12"
reqwest = { version = "0.12", features = ["json", "blocking"] }
tokio = { version = "1", features = ["rt"] }
notify = "7"
tempfile = "3"
semver = "1"
fs2 = "0.4"
zip = { workspace = true }
sha2 = { workspace = true }
[dev-dependencies]
serial_test = "3"
# When building for musl, compile OpenSSL from source instead of linking
# to system libssl (which doesn't exist in musl environments).
[target.'cfg(target_env = "musl")'.dependencies]
openssl-sys = { version = "0.9", features = ["vendored"] }