From c4943a2be937b2a24099c5a66b0bcb93af3fbe6d Mon Sep 17 00:00:00 2001 From: andeya Date: Mon, 27 Jun 2022 00:08:51 +0800 Subject: [PATCH] chore: update authors --- Cargo.toml | 4 ++-- LICENSE | 2 +- examples/vm/cvm.rs | 2 +- wasmy-abi/Cargo.toml | 4 ++-- wasmy-macros/Cargo.toml | 4 ++-- wasmy-vm/Cargo.toml | 4 ++-- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3788995..371aa36 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,10 +3,10 @@ name = "wasmy" version = "0.5.6" edition = "2021" resolver = "2" -authors = ["henrylee2cn "] +authors = ["andeya "] description = "wasmy, easily customize my wasm app!" license = "Apache-2.0" -repository = "https://github.com/henrylee2cn/wasmy" +repository = "https://github.com/andeya/wasmy" categories = ["wasm"] keywords = ["wasm", "webassembly", "wasm-app"] readme = "./README.md" diff --git a/LICENSE b/LICENSE index 480c2fa..50eac79 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2022 henrylee2cn(李亚川) + Copyright 2022 AndeyaLee(李亚川) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/examples/vm/cvm.rs b/examples/vm/cvm.rs index adcc5ff..3f6ee92 100644 --- a/examples/vm/cvm.rs +++ b/examples/vm/cvm.rs @@ -23,7 +23,7 @@ fn main() { let mut builder: WasiStateBuilder = WasiState::new(env.wasm_uri()); let mut import_object = builder .arg("-v true") - .env("AUTHOR", "henrylee2cn") + .env("AUTHOR", "andeya") .finalize()? .import_object(module)?; import_object.register("env", import_namespace!({ diff --git a/wasmy-abi/Cargo.toml b/wasmy-abi/Cargo.toml index 4341099..28bd3c6 100644 --- a/wasmy-abi/Cargo.toml +++ b/wasmy-abi/Cargo.toml @@ -3,10 +3,10 @@ name = "wasmy-abi" version = "0.5.6" edition = "2021" resolver = "2" -authors = ["henrylee2cn "] +authors = ["andeya "] description = "ABI of wasmy (easily customize my wasm app)" license = "Apache-2.0" -repository = "https://github.com/henrylee2cn/wasmy" +repository = "https://github.com/andeya/wasmy" categories = ["wasm"] keywords = ["wasm", "webassembly", "wasm-app"] readme = "../README.md" diff --git a/wasmy-macros/Cargo.toml b/wasmy-macros/Cargo.toml index 0f410ab..553bf89 100644 --- a/wasmy-macros/Cargo.toml +++ b/wasmy-macros/Cargo.toml @@ -3,10 +3,10 @@ name = "wasmy-macros" version = "0.5.6" edition = "2021" resolver = "2" -authors = ["henrylee2cn "] +authors = ["andeya "] description = "macros of wasmy (easily customize my wasm app)" license = "Apache-2.0" -repository = "https://github.com/henrylee2cn/wasmy" +repository = "https://github.com/andeya/wasmy" categories = ["wasm"] keywords = ["wasm", "webassembly", "wasm-app"] readme = "../README.md" diff --git a/wasmy-vm/Cargo.toml b/wasmy-vm/Cargo.toml index 563090e..bbab74e 100644 --- a/wasmy-vm/Cargo.toml +++ b/wasmy-vm/Cargo.toml @@ -3,10 +3,10 @@ name = "wasmy-vm" version = "0.5.6" edition = "2021" resolver = "2" -authors = ["henrylee2cn "] +authors = ["andeya "] description = "virtual machine of wasmy (easily customize my wasm app)" license = "Apache-2.0" -repository = "https://github.com/henrylee2cn/wasmy" +repository = "https://github.com/andeya/wasmy" categories = ["wasm"] keywords = ["wasm", "webassembly", "wasm-app"] readme = "../README.md"