-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (33 loc) · 921 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
[package]
name = "hawk"
version = "0.2.0"
authors = ["Amaury Carrade <amaury@carrade.eu>"]
edition = "2018"
[dependencies]
chrono = { version = "0.4.*", features = ["serde"] }
error-chain = "0.12.*"
failure = "0.1.*"
failure_derive = "0.1.*"
insta = { version = "1.3.*", features = [ "glob"] }
lazy_static = "1.4.*"
pyo3 = { version = "0.13.*", features = ["extension-module"] }
regex = "1.4.*"
roman = "0.1.*"
serde = "1.0.*"
serde_json = "1.0.*"
serde_derive = "1.0.*"
strum = "0.20.*"
strum_macros = "0.20.*"
uuid = { version = "0.8.*", features = ["serde", "v4"] }
[lib]
name = "hawk_processing"
path = "src/lib.rs"
crate-type = ["cdylib"]
[package.metadata.maturin]
classifier = [
"Development Status :: 4 - Beta",
"License :: CeCILL-B Free Software License Agreement (CECILL-B)",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries",
"Programming Language :: Rust",
]