diff options
author | kaiwu <kaiwu2004@gmail.com> | 2024-07-15 20:34:31 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2024-07-15 20:34:31 +0800 |
commit | a90131e260f1c149d2e89af6a5d64b7d82b766c1 (patch) | |
tree | 2960ac5961748fb18d386f7455300ae9794eade4 | |
parent | 0eeadab423ce5bbfe0182d8d0c483b1d5ff2eb27 (diff) | |
download | wechat_dev_tools-a90131e260f1c149d2e89af6a5d64b7d82b766c1.tar.gz wechat_dev_tools-a90131e260f1c149d2e89af6a5d64b7d82b766c1.zip |
javascript target
-rw-r--r-- | gleam.toml | 2 | ||||
-rw-r--r-- | manifest.toml | 5 |
2 files changed, 6 insertions, 1 deletions
@@ -1,6 +1,7 @@ name = "wechat_dev_tools" version = "0.1.0" description = "tools to develop wechat miniprogram in gleam" +target = "javascript" # Fill out these fields if you intend to generate HTML documentation or publish # your project to the Hex package manager. @@ -18,6 +19,7 @@ gleam_javascript = ">= 0.11.0 and < 1.0.0" simplifile = ">= 2.0.1 and < 3.0.0" filepath = ">= 1.0.0 and < 2.0.0" gleamyshell = ">= 2.0.1 and < 3.0.0" +wechat = { path = "../wechat" } [dev-dependencies] gleeunit = ">= 1.0.0 and < 2.0.0" diff --git a/manifest.toml b/manifest.toml index 962a924..fa1d612 100644 --- a/manifest.toml +++ b/manifest.toml @@ -4,16 +4,19 @@ packages = [ { name = "filepath", version = "1.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "filepath", source = "hex", outer_checksum = "EFB6FF65C98B2A16378ABC3EE2B14124168C0CE5201553DE652E2644DCFDB594" }, { name = "gleam_javascript", version = "0.11.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_javascript", source = "hex", outer_checksum = "483631D3001FCE8EB12ADEAD5E1B808440038E96F93DA7A32D326C82F480C0B2" }, + { name = "gleam_json", version = "2.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_json", source = "hex", outer_checksum = "CB10B0E7BF44282FB25162F1A24C1A025F6B93E777CCF238C4017E4EEF2CDE97" }, { name = "gleam_stdlib", version = "0.39.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "2D7DE885A6EA7F1D5015D1698920C9BAF7241102836CE0C3837A4F160128A9C4" }, { name = "gleamyshell", version = "2.0.1", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleamyshell", source = "hex", outer_checksum = "14AE384BC6CBE520A0FCC790B44B2A5A94921E5C7BE67713CDCF07A7663D3ACD" }, { name = "gleeunit", version = "1.2.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "F7A7228925D3EE7D0813C922E062BFD6D7E9310F0BEE585D3A42F3307E3CFD13" }, { name = "simplifile", version = "2.0.1", build_tools = ["gleam"], requirements = ["filepath", "gleam_stdlib"], otp_app = "simplifile", source = "hex", outer_checksum = "5FFEBD0CAB39BDD343C3E1CCA6438B2848847DC170BA2386DF9D7064F34DF000" }, + { name = "wechat", version = "0.1.0", build_tools = ["gleam"], requirements = ["gleam_javascript", "gleam_json", "gleam_stdlib"], source = "local", path = "../wechat" }, ] [requirements] filepath = { version = ">= 1.0.0 and < 2.0.0" } gleam_javascript = { version = ">= 0.11.0 and < 1.0.0" } gleam_stdlib = { version = ">= 0.34.0 and < 2.0.0" } -gleamyshell = { version = ">= 2.0.1 and < 3.0.0"} +gleamyshell = { version = ">= 2.0.1 and < 3.0.0" } gleeunit = { version = ">= 1.0.0 and < 2.0.0" } simplifile = { version = ">= 2.0.1 and < 3.0.0" } +wechat = { path = "../wechat" } |