Skip to content

Commit f40874c

Browse files
committed
update all cargo tomls
1 parent ea7c83c commit f40874c

File tree

8 files changed

+34
-12
lines changed

8 files changed

+34
-12
lines changed

Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@ members = [
1111
]
1212

1313
[workspace.package]
14-
version = "0.7.3"
14+
version = "0.7.4"
1515
edition = "2024"
16+
repository = "https://github.com/zahash/jsoncodegen/"
17+
license = "MIT"
18+
authors = ["zahash <zahash.z@gmail.com>"]
1619

1720
[profile.wasm]
1821
inherits = "release"

cli/Cargo.toml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
11
[package]
22
name = "jsoncodegen-cli"
3+
description = "json code generation cli"
34
version.workspace = true
45
edition.workspace = true
5-
authors = ["zahash <zahash.z@gmail.com>"]
6-
description = "json code generation cli"
7-
license = "MIT"
8-
repository = "https://github.com/zahash/jsoncodegen/"
6+
repository.workspace = true
7+
license.workspace = true
8+
authors.workspace = true
9+
publish = false
910

1011
[[bin]]
1112
name = "jcg"
1213
path = "src/main.rs"
1314

1415
[dependencies]
1516
clap = { version = "4", features = ["derive", "env"] }
16-
reqwest = { version = "0.12", features = ["blocking", "json"] }
17+
reqwest = { version = "0.13", features = ["blocking", "json"] }
1718
serde = { version = "1", features = ["derive"] }
18-
wasmtime = { version = "39", default-features = false, features = ["cranelift"] }
19-
wasmtime-wasi = { version = "39", default-features = false, features = ["p1"] }
19+
wasmtime = { version = "40", default-features = false, features = ["cranelift"] }
20+
wasmtime-wasi = { version = "40", default-features = false, features = ["p1"] }

codegen-java/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
name = "jsoncodegen-java"
33
version.workspace = true
44
edition.workspace = true
5+
repository.workspace = true
6+
license.workspace = true
7+
authors.workspace = true
58
publish = false
69

710
[dependencies]

codegen-rust/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
name = "jsoncodegen-rust"
33
version.workspace = true
44
edition.workspace = true
5+
repository.workspace = true
6+
license.workspace = true
7+
authors.workspace = true
58
publish = false
69

710
[dependencies]

core/Cargo.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
[package]
22
name = "jsoncodegen"
3+
description = "json code generation library"
34
version.workspace = true
45
edition.workspace = true
5-
authors = ["zahash <zahash.z@gmail.com>"]
6-
description = "json code generation library"
7-
license = "MIT"
8-
repository = "https://github.com/zahash/jsoncodegen/"
6+
repository.workspace = true
7+
license.workspace = true
8+
authors.workspace = true
9+
publish = false
910

1011
[dependencies]
1112
serde_json = "1"

iota/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@
22
name = "jsoncodegen-iota"
33
version.workspace = true
44
edition.workspace = true
5+
repository.workspace = true
6+
license.workspace = true
7+
authors.workspace = true
58
publish = false

test-utils/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
name = "jsoncodegen-test-utils"
33
version.workspace = true
44
edition.workspace = true
5+
repository.workspace = true
6+
license.workspace = true
7+
authors.workspace = true
8+
publish = false
59

610
[dependencies]
711
serde_json = "1"

wasm-serve/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
name = "wasm-serve"
33
version.workspace = true
44
edition.workspace = true
5+
repository.workspace = true
6+
license.workspace = true
7+
authors.workspace = true
8+
publish = false
59

610
[dependencies]
711
axum = "0.8"

0 commit comments

Comments
 (0)