mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 13:00:37 +00:00
33 lines
664 B
TOML
33 lines
664 B
TOML
[package]
|
|
name = "lune-cli"
|
|
publish = false
|
|
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"
|
|
|
|
[dependencies]
|
|
|
|
lune = { path = "../lib" }
|
|
|
|
console.workspace = true
|
|
lazy_static.workspace = true
|
|
serde_json.workspace = true
|
|
serde.workspace = true
|
|
tokio.workspace = true
|
|
reqwest.workspace = true
|
|
|
|
anyhow = "1.0.68"
|
|
regex = "1.7.1"
|
|
serde_yaml = "0.9.17"
|
|
|
|
clap = { version = "4.1.1", features = ["derive"] }
|
|
full_moon = { version = "0.17.0", features = ["roblox"] }
|