forked from Cutieguwu/raven
36 lines
658 B
TOML
36 lines
658 B
TOML
[package]
|
|
name = "raven"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "MIT"
|
|
|
|
authors = ["Olivia Brooks", "Adrian Long"]
|
|
description = "A simple build tool for Java"
|
|
repository = "https://gitea.cutieguwu.ca/Cutieguwu/raven"
|
|
|
|
keywords = ["java", "tool"]
|
|
categories = ["development-tools::build-utils"]
|
|
publish = false
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
bytesize = "2.3"
|
|
# hard-xml = "1.41"
|
|
pathsub = "0.1.1"
|
|
ron = "0.12.0"
|
|
sha256 = "1.6"
|
|
subprocess = "0.2.13"
|
|
toml = "0.9.11"
|
|
|
|
[dependencies.clap]
|
|
version = "4.5"
|
|
features = ["cargo", "derive"]
|
|
|
|
[dependencies.semver]
|
|
version = "1.0"
|
|
features = ["serde"]
|
|
|
|
[dependencies.serde]
|
|
version = "1.0"
|
|
features = ["derive"]
|