mirror of
https://github.com/valmojr/armatak.git
synced 2026-06-13 17:33:30 +00:00
28 lines
691 B
TOML
28 lines
691 B
TOML
[package]
|
|
name = "armatak"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
arma-rs = "1.10.4"
|
|
log = "0.4.22"
|
|
log4rs = "1.3.0"
|
|
regex = "1.10.6"
|
|
reqwest = {version = "0.12.7", features = ["blocking"]}
|
|
serde = { version = "1.0.210", features = ["derive"] }
|
|
serde_json = "1.0.128"
|
|
|
|
[dependencies.uuid]
|
|
version = "1.10.0"
|
|
features = [
|
|
"v4", # Lets you generate random UUIDs
|
|
"fast-rng", # Use a faster (but still sufficiently random) RNG
|
|
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
|
|
]
|
|
|
|
[lib]
|
|
name = "armatak"
|
|
crate-type = ["cdylib"]
|