mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-21 05:06:29 +00:00
35 lines
560 B
TOML
35 lines
560 B
TOML
[package]
|
|
name = "rojo"
|
|
version = "0.5.0"
|
|
authors = ["Lucien Greathouse <me@lpghatguy.com>"]
|
|
description = "A tool to create robust Roblox projects"
|
|
license = "MIT"
|
|
repository = "https://github.com/LPGhatguy/rojo"
|
|
|
|
[lib]
|
|
name = "librojo"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "rojo"
|
|
path = "src/bin.rs"
|
|
|
|
[features]
|
|
default = []
|
|
bundle-plugin = []
|
|
|
|
[dependencies]
|
|
clap = "2.27"
|
|
rouille = "2.1"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|
|
notify = "4.0"
|
|
rand = "0.4"
|
|
regex = "1.0"
|
|
lazy_static = "1.0"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.0"
|
|
walkdir = "2.1"
|