Skip to content

Commit a4451eb

Browse files
committed
Merge branch 'develop'
2 parents a858c46 + 1e559f9 commit a4451eb

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed

grower-rs/Cargo.toml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
1+
[workspace]
2+
resolver = "3"
3+
members = ["crates/grower-jsni"]
4+
5+
[workspace.package]
6+
version = "0.1.0"
7+
edition = "2021"
8+
authors = ["itsu-dev"]
9+
description = "A Library for development language runtimes that run on Web Browsers."
10+
documentation = "https://github.com/Tsukuba-Programming-Lab/grower"
11+
license = "MIT"
12+
113
[package]
2-
name = "grower-rs"
14+
name = "grower"
315
version = "0.1.0"
416
edition = "2021"
17+
authors = ["itsu-dev"]
18+
description = "A Library for development language runtimes that run on Web Browsers."
19+
documentation = "https://github.com/Tsukuba-Programming-Lab/grower"
20+
license = "MIT"
521

622
[dependencies]
7-
jsni = { path = "./crates/jsni", version = "0.1.0" }
23+
jsni = { package = "grower-jsni", path = "./crates/grower-jsni", version = "0.1.0" }
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[package]
2+
name = "grower-jsni"
3+
edition.workspace = true
4+
version.workspace = true
5+
authors.workspace = true
6+
description.workspace = true
7+
documentation.workspace = true
8+
9+
[dependencies]
10+
wasm-bindgen = "0.2.92"
11+
wasm-bindgen-futures = "0.4.45"
File renamed without changes.

0 commit comments

Comments
 (0)