-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
36 lines (31 loc) · 930 Bytes
/
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
[workspace]
members = [
"coffer_macros",
"wtf8",
]
[package]
name = "coffer"
version = "3.0.0"
authors = ["Deadbeef"]
edition = "2021"
license = "Apache-2.0 or MIT"
categories = ["parser-implementations", "encoding", "data-structures"]
description = "A lightweight and fast library for reading and writing Java classes"
repository = "https://gitlab.com/fee1-dead/coffer"
homepage = "https://gitlab.com/fee1-dead/coffer"
readme = "../README.md"
include = ["src/**/*", "LICENSE-*", "COPYRIGHT.md", "README.md", "!**/tests/**/*"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
thiserror = "1.0"
bitflags = "1.0"
coffer-macros = { path = "./coffer_macros", version = "1.0.0" }
indexmap = "1.6.1"
once_cell = "1.13.0"
wtf-8 = { path = "./wtf8", features = ["std"] }
[dev-dependencies]
tempfile = "3.2.0"
zip = "0.6.2"
[features]
default = []
backtrace = []