-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
48 lines (41 loc) · 1.16 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 = "rs-cache"
version = "0.8.6" # Remember to update usage
authors = ["jimvdl <[email protected]>"]
edition = "2021"
license = "MIT"
description = "A read-only, high-level, virtual file API for the RuneScape cache."
repository = "https://github.com/jimvdl/rs-cache"
documentation = "https://docs.rs/rs-cache"
readme = "README.md"
keywords = ["runescape", "osrs", "rs3"]
exclude = [".gitignore", "data/*"]
categories = ["development-tools", "filesystem"]
[features]
rs3 = ["whirlpool", "num-bigint", "rune-fs/rs3"]
[[bench]]
name = "578_cache"
harness = false
[[example]]
name = "rs3_update_protocol"
required-features = ["rs3"]
[lib]
name = "rscache"
path = "src/lib.rs"
[dependencies]
crc32fast = "1.3.2"
nom = "7.1.1"
whirlpool = { version = "0.10.1", optional = true }
num-bigint = { version = "0.4.3", optional = true }
serde = { version = "1.0.137", features = ["derive"], optional = true }
thiserror = "1.0.30"
rune-fs = "0.1.5"
[dev-dependencies]
sha1_smol = "1.0.0"
rune-fs = { version = "0.1.4", features = ["rs3"] }
once_cell = "1.16.0"
criterion = "0.5.1"
rand = "0.8.5"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]