-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (54 loc) · 1.33 KB
/
Cargo.toml
File metadata and controls
59 lines (54 loc) · 1.33 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
edition = "2021"
name = "holochain_scaffolding_cli"
version = "0.600.0"
description = "CLI to easily generate and modify holochain apps"
license = "CAL-1.0"
homepage = "https://developer.holochain.org"
documentation = "https://docs.rs/holochain_scaffolding_cli"
repository = "https://github.com/holochain/scaffolding"
readme = "README.md"
[[bin]]
name = "hc-scaffold"
path = "src/bin/hc-scaffold.rs"
[lib]
name = "holochain_scaffolding_cli"
path = "src/lib.rs"
[dependencies]
holochain_types = "0.7.0-dev.11"
mr_bundle = "0.7.0-dev.0"
dirs = "6.0"
ignore = "0.4"
anyhow = "1.0"
build-fs-tree = "0.6.0"
cargo_metadata = "0.18.0"
dialoguer = "0.10.2"
path-clean = "1.0.1"
regex = "1.6.0"
serde_yaml = "0.9.34"
serde_json = "1"
structopt = "0.3.11"
thiserror = "2.0"
tokio = { version = "1.11", features = ["full"] }
toml = "0.8.14"
convert_case = "0.8.0"
syn = { version = "2.0.39", features = ["full", "extra-traits"] }
quote = "1.0.21"
pluralizer = "0.5.0"
prettyplease = "0.2.15"
proc-macro2 = "1"
handlebars = "4.3.5"
include_dir = "0.7.3"
serde = "1"
itertools = "0.14"
colored = "3.0"
dprint-plugin-typescript = "0.91.1"
markup_fmt = "0.10.0"
git2 = { version = "0.19.0", default-features = false, features = [
"https",
"ssh_key_from_memory",
"vendored-libgit2",
"vendored-openssl",
] }
[dev-dependencies]
pretty_assertions = "1.4"