[package]
edition = "2024"
name = "link2aws"
version = "0.1.1"
authors = ["Felix Kaiser"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Converts ARNs to direct links to the AWS console"
readme = "README.md"
license = "ISC"
repository = "https://github.com/link2aws/link2aws-rs"
[lib]
name = "link2aws"
path = "src/lib.rs"
[[bin]]
name = "link2aws"
path = "src/main.rs"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[[test]]
name = "data_tests"
path = "tests/data_tests.rs"
[[bench]]
name = "link"
path = "benches/link.rs"
harness = false
[dependencies.clap]
version = "4.5.47"
features = ["derive"]
[dependencies.nom]
version = "8.0.0"
[dev-dependencies.assert_cmd]
version = "2.0.17"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.serde_json]
version = "1.0.143"