publish 流程会执行 cjlint(error 即阻塞),修复: - 测试枚举 Role.User 与类型名 User 冲突 → 改名 Role.Member(G.ENU.01) - 测试用例函数补 : Unit 返回类型(G.DCL.02) - JsonOption.instance 补显式类型(G.DCL.02) - JsonReader.readParentFields 移除未使用 options 参数(G.FUN.02) - Annotations.cj 移除硬编码 URL(G.OTH.03) - 宏 FieldVisitor.visit 补 : Unit(G.DCL.02) - cjpm.toml 增加 org = "simcu"(publish 自动写入) cjpm bundle 已可成功生成 simapi_serialization-1.0.0.cjp, 剩余阻塞:中心仓认证(pkg.cangjie-lang.cn 需用户 token)
25 lines
974 B
TOML
25 lines
974 B
TOML
[package]
|
|
cjc-version = "1.1.3"
|
|
name = "simapi_serialization"
|
|
description = "SimApi 全反射 JSON 序列化库(对齐 .NET JsonSerializer.Serialize/Deserialize + SerializerPropertyName/SerializerIgnore 特性)"
|
|
version = "1.0.0"
|
|
org = "simcu"
|
|
target-dir = ""
|
|
output-type = "static"
|
|
|
|
[dependencies]
|
|
|
|
[target]
|
|
[target.x86_64-w64-mingw32]
|
|
compile-option = "-Woff unused --diagnostic-format=noColor -Woff deprecated"
|
|
[target.x86_64-w64-mingw32.bin-dependencies]
|
|
path-option = [ "${CANGJIE_STDX_PATH}" ]
|
|
[target.x86_64-unknown-linux-gnu]
|
|
compile-option = "-Woff unused --diagnostic-format=noColor -Woff deprecated"
|
|
[target.x86_64-unknown-linux-gnu.bin-dependencies]
|
|
path-option = [ "${CANGJIE_STDX_PATH}" ]
|
|
[target.aarch64-unknown-linux-gnu]
|
|
compile-option = "-Woff unused --diagnostic-format=noColor -Woff deprecated"
|
|
[target.aarch64-unknown-linux-gnu.bin-dependencies]
|
|
path-option = [ "${CANGJIE_STDX_PATH}" ]
|