2019-05-16 07:02:40 +00:00
|
|
|
[package]
|
|
|
|
name = "cargo-play"
|
2021-02-20 05:56:47 +00:00
|
|
|
version = "0.5.0"
|
2019-05-16 07:02:40 +00:00
|
|
|
authors = ["Zeyi Fan <cargo@zeyi.fan>"]
|
|
|
|
edition = "2018"
|
2019-08-21 05:19:44 +00:00
|
|
|
description = "Run your Rust code without setting up Cargo"
|
2019-05-16 07:08:01 +00:00
|
|
|
license = "MIT"
|
|
|
|
homepage = "https://github.com/fanzeyi/cargo-play"
|
2019-05-20 08:03:41 +00:00
|
|
|
readme = "README.md"
|
|
|
|
categories = ["development-tools::build-utils", "development-tools::cargo-plugins"]
|
2019-05-16 07:02:40 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-07-26 22:32:33 +00:00
|
|
|
structopt = "0.3"
|
2019-05-16 07:08:01 +00:00
|
|
|
failure = "0.1"
|
|
|
|
toml = "0.5"
|
2019-05-16 07:02:40 +00:00
|
|
|
sha1 = "0.6"
|
2021-02-20 05:41:55 +00:00
|
|
|
bs58 = "0.4"
|
2019-05-16 07:02:40 +00:00
|
|
|
log = "0.4"
|
2019-05-16 07:08:01 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-02-18 07:09:13 +00:00
|
|
|
pathdiff = "0.2"
|
2019-08-21 05:19:44 +00:00
|
|
|
proc-macro2 = "1.0"
|
|
|
|
syn = { version = "1.0", features = ["full"] }
|
|
|
|
quote = "1.0"
|
2019-08-15 06:42:53 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-02-20 05:41:55 +00:00
|
|
|
rand = "0.8.0"
|
2020-07-26 22:57:15 +00:00
|
|
|
|
|
|
|
[badges]
|
|
|
|
travis-ci = { repository = "fanzeyi/cargo-play" }
|
|
|
|
maintenance = { status = "passively-maintained" }
|