-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (29 loc) · 840 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
[package]
name = "tarantella"
version = "0.7.3"
edition = "2018"
authors = ["Dan Chiarlone"]
description = "Tarantella is a modern package manager for C/C++ WASM apps (main modules) and WASM libraries (side modules) meant to be dynamically linked!"
readme = "README.md"
repository = "https://github.com/danbugs/tarantella"
license = "AGPL-3.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
structopt = "0.3.22"
failure = "0.1.8"
exitfailure = "0.5.1"
toml = "0.5.8"
serde = "1.0.129"
serde_derive = "1.0.129"
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1", features = ["full"] }
zip = "0.5"
zip-extensions = "0.6"
log = "0.4.8"
env_logger = "0.6.2"
online = "3.0.1"
fs_extra = "1.2.0"
regex = "1.5"
[[bin]]
name = "tapm"
path = "src/main.rs"