-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (30 loc) · 967 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "skycrane"
version = "0.1.0"
edition = "2021"
authors = ["Victor Palade <victor@cloudflavor.io>"]
description = "Skycrane automates infrastructure"
license = "Apache-2.0"
repository = "https://github.com/cloudflavor/skycrane"
readme = "README.md"
keywords = ["automation", "infrastructure", "wasm", "wasmtime", "webassembly"]
categories = ["command-line-utilities", "wasm"]
[[bin]]
name = "skycrane"
path = "src/bin/skycrane.rs"
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
allocative = "0.3.3"
anyhow = "1.0.79"
rust-embed = { version = "8.2.0", features = ["interpolate-folder-path"] }
starlark = "0.12.0"
starlark_derive = "0.12.0"
starlark_syntax = "0.12.0"
structopt = "0.3.26"
tokio = { version = "1.35.1", features = ["rt-multi-thread", "macros", "fs"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
wasi-common = "22.0.0"
wasmtime = "25.0.3"
wasmtime-wasi = "22.0.0"