Skip to content

Commit f2650a0

Browse files
committed
hc-generate: Change default template to rust-proc
Fixes holochain/rust-proc-zome-template#5
1 parent b200ee5 commit f2650a0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG-UNRELEASED.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
88

99
### Changed
1010

11+
- Changed `hc generate` to use the `rust-proc` template by default.
12+
1113
### Deprecated
1214

1315
### Removed

crates/cli/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ enum Cli {
6161
#[structopt(parse(from_os_str))]
6262
/// The path to the zome that should be generated (usually in ./zomes/)
6363
zome: PathBuf,
64-
#[structopt(default_value = "rust")]
65-
/// Either the name of a built-in template (rust, rust-proc) or the url to a git repo containing a Zome template.
64+
#[structopt(default_value = "rust-proc")]
65+
/// Either the name of a built-in template (rust-proc, rust) or the url to a git repo containing a Zome template.
6666
template: String,
6767
},
6868
#[structopt(alias = "r")]

0 commit comments

Comments
 (0)