lune-packaging/packages/cli/Cargo.toml

39 lines
831 B
TOML
Raw Normal View History

2023-02-05 19:13:58 -05:00
[package]
name = "lune-cli"
2023-02-05 19:41:38 -05:00
publish = false
2023-02-05 19:13:58 -05:00
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description.workspace = true
readme.workspace = true
keywords.workspace = true
categories.workspace = true
[[bin]]
name = "lune"
path = "src/main.rs"
[features]
default = []
roblox = ["lune/roblox"]
2023-02-05 19:13:58 -05:00
[dependencies]
lune = { path = "../lib" }
console.workspace = true
2023-02-24 17:44:09 +01:00
futures-util.workspace = true
2023-03-25 17:37:12 +01:00
once_cell.workspace = true
2023-02-05 19:13:58 -05:00
serde.workspace = true
2023-02-24 17:44:09 +01:00
serde_json.workspace = true
serde_yaml.workspace = true
2023-02-05 19:13:58 -05:00
tokio.workspace = true
2023-02-24 17:48:11 +01:00
anyhow = "1.0"
2023-02-05 19:13:58 -05:00
2023-02-24 17:48:11 +01:00
clap = { version = "4.1", features = ["derive"] }
full_moon = { version = "0.17", features = ["roblox"] }
2023-03-24 12:38:27 +01:00
include_dir = { version = "0.7.3", features = ["glob"] }
2023-02-24 17:48:11 +01:00
regex = { version = "1.7", default-features = false, features = ["std"] }