-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (48 loc) · 1.4 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
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "chocodye"
description = "A Rust library for changing the color of the chocobos' plumage in Final Fantasy XIV."
version = "1.1.2"
authors = ["ShE3py"]
repository = "https://github.com/ShE3py/chocodye/"
edition = "2021"
rust-version = "1.70"
license = "MIT OR Apache-2.0"
keywords = ["ffxiv", "chocobo"]
include = ["examples/*.rs", "src/**/*", "LICENSE-*", "README.md", "build.rs"]
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
targets = ["x86_64-unknown-linux-gnu", "x86_64-pc-windows-gnu", "wasm32-unknown-unknown"]
[features]
default = ["fluent", "truecolor"]
fluent = ["dep:fluent", "dep:fluent-syntax", "dep:unic-langid", "dep:log"]
truecolor = []
[[example]]
name = "truecolor"
required-features = ["fluent", "truecolor"]
[[example]]
name = "menu"
required-features = ["fluent", "truecolor"]
[dependencies.fluent]
version = "0.16.1"
optional = true
[dependencies.fluent-syntax]
version = "0.11.1"
optional = true
[dependencies.unic-langid]
version = "0.9.5"
features = ["macros"]
optional = true
[dependencies.log]
version = "0.4.22"
optional = true
[build-dependencies.quick-xml]
version = "0.37.0"
features = ["serialize"]
[build-dependencies.serde]
version = "1.0.215"
features = ["derive"]
[target.'cfg(unix)'.dev-dependencies.libc]
version = "0.2.164"
[target.'cfg(windows)'.dev-dependencies.windows-sys]
version = "0.59.0"
features = ["Win32_System_Console", "Win32_Foundation"]