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"
|
|
|
|
|
2023-03-09 11:17:25 +00:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
roblox = ["lune/roblox"]
|
|
|
|
|
2023-02-06 00:13:58 +00:00
|
|
|
[dependencies]
|
|
|
|
|
|
|
|
lune = { path = "../lib" }
|
|
|
|
|
2023-02-09 22:07:30 +00:00
|
|
|
console.workspace = true
|
2023-02-24 16:44:09 +00:00
|
|
|
futures-util.workspace = true
|
2023-03-25 16:37:12 +00:00
|
|
|
once_cell.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-04-30 19:48:47 +01:00
|
|
|
env_logger = "0.10"
|
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"] }
|