-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (41 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
48 lines (41 loc) · 1.04 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "cargo-ats3"
version = "0.0.5"
edition = "2024"
rust-version = "1.85"
description = "Cargo subcommand for ATS3 projects"
license = "MPL-2.0"
authors = ["Brandon Barker <brandon.barker@gmail.com>"]
repository = "https://github.com/ats-lang/cargo-ats3"
homepage = "https://github.com/ats-lang/cargo-ats3"
readme = "README.md"
keywords = ["ats3", "ats", "build-tool", "compiler", "cargo-subcommand"]
categories = ["development-tools::build-utils", "compilers"]
[dependencies]
# CLI
clap = { version = "4", features = ["derive"] }
# Manifest handling
toml = "0.8"
toml_edit = "0.22"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Version handling
semver = { version = "1", features = ["serde"] }
# Dependency resolution
pubgrub = "0.3"
# Packaging
flate2 = "1"
tar = "0.4"
zip = { version = "2", default-features = false, features = ["deflate"] }
sha2 = "0.10"
# Utility
anyhow = "1"
thiserror = "2"
walkdir = "2"
[dev-dependencies]
tempfile = "3"
assert_cmd = "2"
predicates = "3"
serial_test = "3"
flate2 = "1"
tar = "0.4"