lune/packages/cli/Cargo.toml

39 lines
833 B
TOML
Raw Normal View History

2023-02-06 00:13:58 +00:00
[package]
name = "lune-cli"
2023-02-06 00:41:38 +00:00
publish = false
2023-02-06 00:13:58 +00: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-06 00:13:58 +00:00
[dependencies]
lune = { path = "../lib" }
console.workspace = true
2023-02-24 16:44:09 +00:00
futures-util.workspace = true
lazy_static.workspace = true
2023-02-06 00:13:58 +00:00
serde.workspace = true
2023-02-24 16:44:09 +00:00
serde_json.workspace = true
serde_yaml.workspace = true
2023-02-06 00:13:58 +00:00
tokio.workspace = true
2023-02-24 16:48:11 +00:00
anyhow = "1.0"
2023-02-06 00:13:58 +00:00
2023-02-24 16:48:11 +00:00
clap = { version = "4.1", features = ["derive"] }
full_moon = { version = "0.17", features = ["roblox"] }
2023-03-24 11:38:27 +00:00
include_dir = { version = "0.7.3", features = ["glob"] }
2023-02-24 16:48:11 +00:00
regex = { version = "1.7", default-features = false, features = ["std"] }