-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (32 loc) · 1.12 KB
/
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
[package]
name = "jcargo"
version = "0.2.0"
edition = "2021"
include = ["src/**/*", "LICENSE", "README.md"]
authors = ["Guillaume Anthouard <25181283+Gui-Yom@users.noreply.github.com>"]
rust-version = "1.56"
description = "An attempt at making an equivalent to Rust's excellent build tool for the JVM ecosystem."
repository = "https://github.com/Gui-Yom/jcargo/"
homepage = "https://github.com/Gui-Yom/jcargo/"
license = "MIT OR Apache-2.0"
keywords = ["build", "java", "kotlin", "jvm"]
categories = ["command-line-utilities", "development-tools"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
codegen-units = 4
lto = "thin"
[dependencies]
anyhow = "1"
async-oncecell = "0.2"
async-recursion = "1"
quick-xml = { version = "0.22", features = ["serialize"] }
lazy-regex = "2"
regex = "1"
reqwest = { version = "0.11", features = ["stream"] }
semver = { version = "1", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
structopt = { version = "0.3", features = ["color"] }
tokio = { version = "1", features = ["full"] }
toml = "0.5"
url = "2"
walkdir = "2"