Skip to content

Commit ec33115

Browse files
committed
Fix README reference
1 parent 4eb6baf commit ec33115

File tree

3 files changed

+36
-31
lines changed

3 files changed

+36
-31
lines changed

Cargo.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
11
[workspace]
2+
package.version = "11.0.1"
3+
package.readme = "README.md"
4+
package.edition = "2018"
5+
package.description = "Set up a modern rust+react web app by running one command."
6+
package.authors = [
7+
"Haris <[email protected]>",
8+
"Anthony Rubick <[email protected]>",
9+
]
10+
package.repository = "https://github.com/Wulf/create-rust-app"
11+
package.license = "MIT OR Apache-2.0"
12+
package.categories = [
13+
"command-line-utilities",
14+
"development-tools",
15+
"web-programming",
16+
"config",
17+
"database",
18+
]
19+
package.keywords = ["react", "typescript", "generation", "backend", "frontend"]
220
resolver = "2"
321
members = [
422
"crates/create-rust-app",

crates/create-rust-app/Cargo.toml

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,14 @@
11
[package]
22
name = "create-rust-app"
3-
description = "Set up a modern rust+react web app by running one command."
4-
version = "11.0.1"
5-
edition = "2018"
6-
authors = ["Haris <[email protected]>"]
7-
readme = "../README.md"
8-
repository = "https://github.com/Wulf/create-rust-app"
9-
license = "MIT OR Apache-2.0"
10-
keywords = ["react", "typescript", "generation", "backend", "frontend"]
11-
categories = [
12-
"command-line-utilities",
13-
"development-tools",
14-
"web-programming",
15-
"config",
16-
"database",
17-
]
3+
description.workspace = true
4+
version.workspace = true
5+
edition.workspace = true
6+
authors.workspace = true
7+
readme.workspace = true
8+
repository.workspace = true
9+
license.workspace = true
10+
keywords.workspace = true
11+
categories.workspace = true
1812

1913
[dependencies]
2014
##

crates/create-rust-app_cli/Cargo.toml

Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,14 @@
11
[package]
22
name = "create-rust-app_cli"
3-
description = "Set up a modern rust+react web app by running one command."
4-
version = "11.0.1"
5-
authors = ["Haris <[email protected]>"]
6-
edition = "2018"
7-
readme = "../README.md"
8-
repository = "https://github.com/Wulf/create-rust-app"
9-
license = "MIT OR Apache-2.0"
10-
keywords = ["react", "typescript", "generation", "backend", "frontend"]
11-
categories = [
12-
"command-line-utilities",
13-
"development-tools",
14-
"web-programming",
15-
"config",
16-
"database",
17-
]
3+
description.workspace = true
4+
version.workspace = true
5+
authors.workspace = true
6+
edition.workspace = true
7+
readme.workspace = true
8+
repository.workspace = true
9+
license.workspace = true
10+
keywords.workspace = true
11+
categories.workspace = true
1812
default-run = "create-rust-app"
1913

2014
[dependencies]
@@ -27,7 +21,6 @@ walkdir = "2.5"
2721
rust-embed = { version = "8.3", features = ["debug-embed"] }
2822
clap = { version = "4.5", features = ["wrap_help", "derive", "cargo"] }
2923
toml = "0.7.8"
30-
# tsync = "1"
3124
update-informer = "1.1"
3225
qsync = { version = "1.0.1" }
3326

0 commit comments

Comments
 (0)