-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
34 lines (29 loc) · 1.07 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
[package]
name = "minecraft-data-rs"
version = "0.8.1"
authors = ["trivernis <[email protected]>"]
edition = "2021"
readme = "README.md"
license = "MIT"
description = "A wrapper for minecraft-data"
repository = "https://github.com/Trivernis/minecraft-data-rs"
[package.metadata]
minecraft_data_repo = "https://github.com/PrismarineJS/minecraft-data.git"
minecraft_data_commit = "46b78398b6f351958e02fbd266424f0ee0ab138b"
[dependencies]
thiserror = "1.0.38"
serde_json = "1.0.91"
serde_derive = "1.0.151"
serde = "1.0.151"
include_dir = { version = "0.7.3", optional = true }
itertools = { version = "0.10.5", optional = true }
lazy_static = { version = "1.4.0", optional = true }
[build-dependencies]
git2 = {version = "0.18.2", optional = true}
dirs = {version = "5.0.1", optional = true}
cargo_toml = {version = "0.19.1", optional = true}
serde = { version = "1.0.151", features = ["derive"], optional = true }
[features]
default = ["include-data", "api"]
include-data = ["include_dir", "itertools", "lazy_static", "git2", "dirs", "cargo_toml", "serde/derive"]
api = ["include-data"]