mirror of
https://github.com/louis-e/arnis.git
synced 2025-12-23 22:37:56 -05:00
55 lines
1.4 KiB
TOML
55 lines
1.4 KiB
TOML
[package]
|
|
name = "arnis"
|
|
version = "2.3.1"
|
|
edition = "2021"
|
|
description = "Arnis - Generate real life cities in Minecraft"
|
|
homepage = "https://github.com/louis-e/arnis"
|
|
repository = "https://github.com/louis-e/arnis"
|
|
license = "Apache-2.0"
|
|
readme = "README.md"
|
|
|
|
[profile.release]
|
|
lto = "thin"
|
|
overflow-checks = true
|
|
|
|
[features]
|
|
default = ["gui"]
|
|
gui = ["tauri", "tauri-plugin-log", "tauri-plugin-shell", "tokio", "rfd", "dirs", "tauri-build"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = {version = "2", optional = true}
|
|
|
|
[dependencies]
|
|
base64 = "0.22.1"
|
|
clap = { version = "4.5", features = ["derive", "env"] }
|
|
colored = "3.0.0"
|
|
dirs = {version = "6.0.0", optional = true }
|
|
fastanvil = "0.32.0"
|
|
fastnbt = "2.6.0"
|
|
flate2 = "1.1"
|
|
fnv = "1.0.7"
|
|
fs2 = "0.4"
|
|
geo = "0.31.0"
|
|
image = "0.25"
|
|
indicatif = "0.17.11"
|
|
itertools = "0.14.0"
|
|
log = "0.4.27"
|
|
once_cell = "1.21.3"
|
|
rand = "0.8.5"
|
|
rayon = "1.10.0"
|
|
reqwest = { version = "0.12.15", features = ["blocking", "json"] }
|
|
rfd = { version = "0.15.4", optional = true }
|
|
semver = "1.0.27"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tauri = { version = "2", optional = true }
|
|
tauri-plugin-log = { version = "2.6.0", optional = true }
|
|
tauri-plugin-shell = { version = "2", optional = true }
|
|
tokio = { version = "1.48.0", features = ["full"], optional = true }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows = { version = "0.61.1", features = ["Win32_System_Console"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.23.0"
|