-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (40 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
47 lines (40 loc) · 1.21 KB
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
[package]
name = "libbcsv"
version = "0.6.0"
edition = "2021"
authors = ["Lord-Giganticus", "The Members of Lord-G-INC"]
homepage = "https://lordg.org/"
license-file = "LICENSE"
description = "A library to parse the BCSV file format."
repository = "https://github.com/Lord-G-INC/libbcsv"
readme = "README.md"
categories = ["game-development", "parsing", "encoding", "filesystem"]
keywords = ["BCSV", "bcsv", "JMapInfo", "pa", "tbl"]
include = [
"**/*.rs",
"Cargo.toml",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
binrw = "0.11.2"
csv = { version = "1.3.1", optional = true }
cxx = { version = "1.0.105", optional = true }
encoding_rs = "0.8.33"
serde = { version = "1.0.218", optional = true }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
xlsxwriter = "0.6.0"
[target.'cfg(target_arch = "wasm32")'.dependencies]
serde-wasm-bindgen = "0.4"
wasm-bindgen = "0.2.104"
js-sys = "0.3.81"
[features]
c_exports = []
cxx = ["cxx-build", "dep:cxx"]
csv = ["dep:csv"]
serde = ["dep:serde", "csv"]
[lib]
crate-type = ["cdylib", "rlib"]
[build-dependencies]
cxx-build = { version = "1.0.105", optional = true }
[package.metadata.docs.rs]
all-features = true