-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (27 loc) · 833 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
37
38
39
40
41
[package]
name = "xfbin"
version = "0.1.0"
edition = "2021"
[lib]
name = "xfbin_lib"
crate-type = ["cdylib", "rlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# used for more comprehensive error handling
anyhow = "1.0.44"
# used for reading and writing binary files
binrw = "0.10.0"
# used for downcasting and type checking
downcast-rs = "1.1.1"
# better hashmap
hashbrown = "0.11.2"
# used for maintaining insertion order in maps
indexmap = "1.7.0"
itertools = "0.10.0"
# used for serializing and deserializing
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.64"
# used for converting enums to strings and back
strum = "0.24"
strum_macros = "0.24"
pyo3 = { version = "0.21.2", features = ["extension-module", "indexmap"] }