Initial commit

This commit is contained in:
Andrey Tkachenko 2021-12-18 00:11:25 +04:00
parent 0f7d320b60
commit 0325be4ddc
5 changed files with 32 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/target
Cargo.lock

12
Cargo.toml Normal file
View File

@ -0,0 +1,12 @@
[package]
name = "wplug"
version = "0.0.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "WPlug - WASM Plugin System for Rust"
[[bin]]
name = "wplug"
path = "./bin/wplug.rs"
[dependencies]

8
README.md Normal file
View File

@ -0,0 +1,8 @@
# WASM Plugin System
## wplug command
Create and manage `wplug` packages:
- create packages
- verify
- upload to registry

6
bin/wplug.rs Normal file
View File

@ -0,0 +1,6 @@
pub fn main() {
}

4
src/lib.rs Normal file
View File

@ -0,0 +1,4 @@