-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
48 lines (45 loc) · 1.14 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
[package]
name = "owmods_core"
authors = ["Bwc9876 <[email protected]>"]
description = "The core library for the Outer Wilds Mod Manager"
version = "0.15.1"
edition = "2021"
readme = "./README.md"
license = "GPL-3.0-or-later"
repository = "https://github.com/ow-mods/ow-mod-man/"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0.200", features = ["derive"] }
serde_json = "1.0.120"
opener = "0.7.0"
directories = "6.0.0"
reqwest = { version = "0.12.4", default-features = false, features = [
"blocking",
"json",
"rustls-tls",
] }
glob = "0.3.1"
anyhow = "1.0.82"
zip = { version = "2.2.0", default-features = false, features = [
"deflate",
"zstd",
] }
futures = "0.3.30"
log = "0.4.21"
tokio = { version = "1.37.0", features = [
"net",
"time",
"process",
"macros",
"sync",
] }
serde_repr = "0.1.19"
uuid = { version = "1.8.0", features = ["v4", "fast-rng"] }
typeshare = "1.0.3"
lazy_static = "1.4.0"
tempfile = "3.10.1"
unicode-normalization = "0.1.23"
regex = "1.10.4"
versions = "6.2.0"
[dev-dependencies]
tokio-test = "0.4.4"