zhconv-rs 0.3.3__tar.gz → 0.4.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/.cloudflare/setup-pages-env.sh +4 -2
- zhconv_rs-0.4.1/.deepsource.toml +19 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/.gitattributes +4 -0
- zhconv_rs-0.4.1/.github/workflows/main.yml +111 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/.github/workflows/npm.yml +3 -3
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/.github/workflows/pyo3.yml +2 -2
- zhconv_rs-0.4.1/.github/workflows/release.yml +86 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/.github/workflows/worker.yml +0 -1
- zhconv_rs-0.4.1/CHANGELOG.md +66 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/Cargo.lock +799 -609
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/Cargo.toml +57 -18
- zhconv_rs-0.4.1/LICENSE-APACHE +201 -0
- zhconv_rs-0.4.1/LICENSE-GPL +339 -0
- zhconv_rs-0.4.1/LICENSE-MIT +21 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/PKG-INFO +68 -57
- {zhconv_rs-0.3.3/pyo3 → zhconv_rs-0.4.1}/README.md +67 -56
- zhconv_rs-0.4.1/benches/base_benchmark.rs +150 -0
- zhconv_rs-0.4.1/benches/compare_benchmark.rs +201 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/build.rs +282 -119
- zhconv_rs-0.4.1/data/.gitignore +2 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/HKVariants.txt +7 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/HKVariantsRevPhrases.txt +7 -0
- zhconv_rs-0.4.1/data/README.md +15 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/STCharacters.txt +7 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/STPhrases.txt +114 -45
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/TSCharacters.txt +7 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/TSPhrases.txt +7 -0
- zhconv_rs-0.3.3/data/TWPhrasesIT.txt → zhconv_rs-0.4.1/data/TWPhrases.txt +143 -5
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/TWVariants.txt +7 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/TWVariantsRevPhrases.txt +7 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/ZhConversion.php +386 -155
- zhconv_rs-0.4.1/data/cgroups/2016/345/271/264/345/244/252/345/271/263/346/264/213/351/242/261/351/242/250/345/255/243.json +111 -0
- zhconv_rs-0.4.1/data/cgroups/2017/345/271/264/345/244/252/345/271/263/346/264/213/351/242/261/351/242/250/345/255/243.json +119 -0
- zhconv_rs-0.4.1/data/cgroups/2018/345/271/264/345/244/252/345/271/263/346/264/213/351/242/261/351/242/250/345/255/243.json +123 -0
- zhconv_rs-0.4.1/data/cgroups/2019/345/271/264/345/244/252/345/271/263/346/264/213/351/242/261/351/242/250/345/255/243.json +127 -0
- zhconv_rs-0.4.1/data/cgroups/2020/345/271/264/345/244/252/345/271/263/346/264/213/351/242/261/351/242/250/345/255/243.json +99 -0
- zhconv_rs-0.4.1/data/cgroups/2021/345/271/264/345/244/252/345/271/263/346/264/213/351/242/261/351/242/250/345/255/243.json +95 -0
- zhconv_rs-0.4.1/data/cgroups/2022/345/271/264/345/244/252/345/271/263/346/264/213/351/242/261/351/242/250/345/255/243.json +107 -0
- zhconv_rs-0.4.1/data/cgroups/2023/345/271/264/345/244/252/345/271/263/346/264/213/351/242/261/351/242/250/345/255/243.json +75 -0
- zhconv_rs-0.4.1/data/cgroups/2024/345/271/264/345/244/252/345/271/263/346/264/213/351/242/261/351/242/250/345/255/243.json +111 -0
- zhconv_rs-0.4.1/data/cgroups/2025/345/271/264/345/244/252/345/271/263/346/264/213/351/242/261/351/242/250/345/255/243.json +115 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/24.json +29 -5
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/AU Places.json +74 -14
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Adventure Time.json +14 -6
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Aero.json +42 -6
- zhconv_rs-0.4.1/data/cgroups/Anime.json +3111 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Apple.json +4 -0
- zhconv_rs-0.4.1/data/cgroups/Aquarion.json +31 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Aquatics.json +10 -6
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Ariana Grande.json +14 -6
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Arsenal footballer.json +15 -11
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Artist.json +4 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/BR Places.json +6 -6
- zhconv_rs-0.4.1/data/cgroups/Babel category.json +39 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Badminton.json +9 -1
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/BirdG.json +428 -40
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Black Mirror.json +24 -4
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/BlueArchive.json +24 -4
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Britney Spears.json +3 -3
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Bundesliga.json +3 -3
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/CA Places.json +44 -32
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/CH Places.json +6 -2
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Cards.json +7 -3
- zhconv_rs-0.4.1/data/cgroups/Cartoon.json +571 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Chelseafc.json +55 -59
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Chemistry.json +20 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Communication.json +22 -18
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Counter-Strike.json +8 -8
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/County.json +1 -1
- zhconv_rs-0.4.1/data/cgroups/Crayon Shin-chan.json +203 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/DE Places.json +924 -864
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Diablo.json +4 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Digimon.json +271 -7
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Disney.json +122 -274
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Doctor Who.json +4 -4
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Doraemon.json +24 -4
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/DragonBall.json +13 -1
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/DreamWorks.json +17 -9
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Dune.json +11 -3
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/EPL.json +25 -9
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/EU.json +1 -1
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Earthquake.json +12 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Ecology.json +13 -17
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Economics.json +570 -322
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Electronics.json +46 -2
- zhconv_rs-0.4.1/data/cgroups/Entertainer.json +13323 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Eyeshield21.json +2 -2
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/FC Barcelona footballer.json +3 -3
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/FC Bayern footballer.json +36 -4
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/FR Places.json +20 -12
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Firearms.json +62 -42
- zhconv_rs-0.4.1/data/cgroups/Food.json +1135 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Football.json +97 -29
- zhconv_rs-0.4.1/data/cgroups/Formicidae.json +183 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Friends.json +2 -2
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Fujiko Fujio.json +3 -3
- zhconv_rs-0.4.1/data/cgroups/Game of Thrones.json +167 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Games-zh.json +8 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Games.json +41 -25
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Getter Robo.json +8 -8
- zhconv_rs-0.4.1/data/cgroups/GundamGQuuuuuuX.json +283 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/GundamIBO.json +8 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/GundamUC.json +111 -7
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/GundamW.json +8 -4
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/GundamX.json +24 -16
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/HarryPotter.json +188 -196
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Hawaii Five-0.json +1 -1
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/House.json +10 -10
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/IE Places.json +12 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/IN Movie.json +3 -3
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/IN Places.json +0 -4
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/IT.json +173 -69
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/JLeague.json +5 -1
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/JP Show.json +118 -266
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/James Bond.json +33 -37
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Justin Bieber.json +9 -1
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/KO Movie.json +420 -356
- zhconv_rs-0.4.1/data/cgroups/KO Show.json +87 -0
- zhconv_rs-0.4.1/data/cgroups/KO TV Show.json +703 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/KamenRider.json +185 -9
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Katy Perry.json +3 -3
- zhconv_rs-0.4.1/data/cgroups/King Of Fighters.json +19 -0
- zhconv_rs-0.4.1/data/cgroups/KingOfFighters.json +243 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Korea Comparison.json +5 -1
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Korea.json +76 -12
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/LOL.json +399 -47
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/LR.json +10 -2
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Lady Gaga.json +15 -3
- zhconv_rs-0.4.1/data/cgroups/Lana Del Rey.json +211 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Leeds United.json +2 -2
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Lifesciences.json +58 -46
- zhconv_rs-0.4.1/data/cgroups/Linguistics.json +23 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Linkin.json +1 -1
- zhconv_rs-0.4.1/data/cgroups/MCU.json +287 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/MUFC.json +21 -33
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/MY.json +186 -290
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Mahjong.json +1 -1
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Math.json +30 -6
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/MediaWiki.json +11 -7
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Medicine.json +82 -14
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Military.json +107 -43
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Minecraft.json +216 -8
- zhconv_rs-0.4.1/data/cgroups/Movie.json +22667 -0
- zhconv_rs-0.4.1/data/cgroups/Music.json +1967 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/MyHeroAcademia.json +1 -1
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/NARUTO.json +4 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/NBA.json +39 -7
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/NFL.json +4 -4
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/NL Places.json +9 -1
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/NWSL.json +5 -1
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Organization.json +169 -161
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/PHL Places.json +4 -0
- zhconv_rs-0.4.1/data/cgroups/PLT.json +1335 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/People.json +263 -251
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/PeppaPig.json +7 -3
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Pesticide.json +4 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Physics.json +4 -4
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Pixar.json +94 -46
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Pokemon-old.json +1 -1
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Pokemon.json +1 -1
- zhconv_rs-0.4.1/data/cgroups/PoliticiansPT.json +395 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/PoliticiansUK.json +309 -181
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Popes.json +0 -4
- zhconv_rs-0.4.1/data/cgroups/Precure.json +539 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/PresidentsUS.json +204 -160
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/PrisonBreak.json +30 -2
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Psychiatry.json +44 -20
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Psychology.json +2 -6
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Racing.json +5 -13
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Railway.json +220 -204
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/ResidentEvil.json +2 -2
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/SAO.json +4 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/SARS-CoV-2 variant.json +10 -10
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/SEGA.json +2 -2
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/SPY/303/227FAMILY.json +5 -5
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Shinkalion.json +129 -5
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Shipname.json +9 -1
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Signals and Systems.json +3 -3
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Snooker.json +127 -59
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Solo Leveling.json +67 -3
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/SpongeBob SquarePants.json +12 -0
- zhconv_rs-0.4.1/data/cgroups/Sports.json +807 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Square Enix.json +72 -4
- zhconv_rs-0.4.1/data/cgroups/Steam.json +127 -0
- zhconv_rs-0.4.1/data/cgroups/StephenKing.json +155 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Stranger Things.json +83 -31
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/TH Movie.json +373 -9
- zhconv_rs-0.4.1/data/cgroups/TV.json +3895 -0
- zhconv_rs-0.4.1/data/cgroups/Taylor Swift.json +551 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Telcom.json +3 -3
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Tennis.json +444 -148
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/The Chainsmokers.json +5 -1
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/The Witcher.json +3 -3
- zhconv_rs-0.4.1/data/cgroups/TheBeatles.json +103 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Toaru.json +1 -1
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Transformers.json +4 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Transport.json +414 -450
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/TyphoonNew.json +4 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/UA toponyms.json +14 -6
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/UK Places.json +217 -125
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/USState.json +156 -68
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Ultraman.json +11 -7
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Unit.json +60 -4
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Urban.json +10 -2
- zhconv_rs-0.4.1/data/cgroups/Valorant.json +239 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Weather.json +5 -1
- zhconv_rs-0.4.1/data/cgroups/Wednesday.json +291 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Windows.json +0 -4
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Yes! /345/205/211/344/271/213/347/276/216/345/260/221/345/245/2635.json" +8 -8
- zhconv_rs-0.4.1/data/cgroups/ZH Show.json +1955 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/laliga.json +20 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/ligue.json +5 -1
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/liverpoolfc.json +22 -14
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/uefa.json +415 -19
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//344/277/204/350/266/205.json +4 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//345/215/227/347/276/216/350/266/263/347/220/203/351/230/237.json +22 -2
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//345/215/241/345/241/224/345/260/224/346/230/237/347/272/247/350/266/263/347/220/203/350/201/224/350/265/233.json +1 -1
- zhconv_rs-0.4.1/data/cgroups//345/220/215/345/201/265/346/216/242/346/237/257/345/215/227.json +123 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//345/233/233/351/251/205/345/205/204/345/274/237.json +1 -1
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//345/234/215/346/243/213.json +4 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//345/234/260/345/220/215.json +592 -584
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//345/247/223/346/260/217.json +24 -12
- zhconv_rs-0.4.1/data/cgroups//345/256/207/345/244/232/347/224/260/345/205/211.json +203 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//345/267/236/351/202/246.json +17 -1
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//346/204/217/347/224/262.json +6 -10
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//346/216/222/347/220/203.json +1 -1
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//346/224/277/346/262/273/344/272/272/347/211/251.json +160 -44
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//346/226/207/345/255/270.json +219 -215
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//346/226/257/346/264/233/344/274/220/345/205/213/350/266/263/347/220/203.json +2 -2
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//346/235/221/344/270/212/346/230/245/346/250/271.json +13 -9
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//346/262/231/347/211/271/350/201/214/344/270/232/350/266/263/347/220/203/350/201/224/350/265/233.json +40 -16
- zhconv_rs-0.4.1/data/cgroups//346/263/260/345/234/213/344/272/272/345/220/215/345/217/212/345/234/260/345/220/215.json +419 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//347/224/265/345/275/261/346/234/257/350/257/255.json +138 -46
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//347/247/221/345/250/201/347/211/271/350/201/214/344/270/232/350/266/263/347/220/203/350/201/224/350/265/233.json +10 -2
- zhconv_rs-0.4.1/data/cgroups//347/276/216/345/233/275/346/274/253/347/224/273.json +2479 -0
- zhconv_rs-0.4.1/data/cgroups//350/221/241/350/266/205.json +123 -0
- zhconv_rs-0.4.1/data/cgroups//351/237/263/346/250/202/345/212/207.json +31 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//351/251/254/346/235/245/344/272/272/345/220/215/345/234/260/345/220/215.json +38 -34
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//351/254/245/351/231/243/347/211/271/346/224/273.json +4 -4
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/update_basic.py +4 -6
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/update_cgroups.py +106 -94
- zhconv_rs-0.4.1/pyo3/Cargo.toml +36 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1/pyo3}/README.md +67 -56
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/pyo3/src/lib.rs +47 -3
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/src/converter.rs +12 -1
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/src/converters.rs +20 -1
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/src/lib.rs +87 -30
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/src/main.rs +1 -1
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/src/rule.rs +6 -6
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/src/tables.rs +59 -2
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/src/utils.rs +1 -1
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/src/variant.rs +1 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/src/wasm.rs +18 -3
- zhconv_rs-0.4.1/violin-to-hans.svg +81 -0
- zhconv_rs-0.4.1/violin-to-tw.svg +82 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/web/.gitignore +17 -0
- zhconv_rs-0.4.1/web/.yarnrc.yml +1 -0
- zhconv_rs-0.4.1/web/config-overrides.js +3 -0
- zhconv_rs-0.4.1/web/eslint.config.mts +28 -0
- zhconv_rs-0.4.1/web/index.html +26 -0
- zhconv_rs-0.4.1/web/package.json +57 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/web/public/cgroups.json +412 -411
- zhconv_rs-0.4.1/web/src/App.test.tsx +12 -0
- zhconv_rs-0.4.1/web/src/App.tsx +334 -0
- zhconv_rs-0.4.1/web/src/AppContext.tsx +167 -0
- zhconv_rs-0.4.1/web/src/components/AboutDialog.tsx +125 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/web/src/components/CGroupCheckbox.tsx +2 -2
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/web/src/components/CGroupSelect.tsx +64 -61
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/web/src/components/ConvertButton.tsx +42 -53
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/web/src/components/Footer.tsx +37 -51
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/web/src/components/Header.tsx +7 -20
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/web/src/components/InputEditor.tsx +25 -35
- zhconv_rs-0.4.1/web/src/components/OpenCCSwitch.tsx +38 -0
- zhconv_rs-0.4.1/web/src/components/OptionsControl.tsx +154 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/web/src/components/OutputEditor.tsx +15 -9
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/web/src/components/OutputStatusLine.tsx +7 -3
- zhconv_rs-0.4.1/web/src/components/RulesetSelector.tsx +83 -0
- zhconv_rs-0.4.1/web/src/components/editorCommon.tsx +4 -0
- zhconv_rs-0.4.1/web/src/index.css +13 -0
- zhconv_rs-0.4.1/web/src/index.tsx +26 -0
- zhconv_rs-0.4.1/web/src/reportWebVitals.ts +15 -0
- zhconv_rs-0.4.1/web/src/setupTests.ts +25 -0
- zhconv_rs-0.4.1/web/src/theme.ts +11 -0
- zhconv_rs-0.4.1/web/vite.config.ts +23 -0
- zhconv_rs-0.4.1/web/yarn.lock +4891 -0
- zhconv_rs-0.3.3/.github/workflows/main.yml +0 -100
- zhconv_rs-0.3.3/.github/workflows/release.yml +0 -91
- zhconv_rs-0.3.3/LICENSE +0 -674
- zhconv_rs-0.3.3/benches/zhconv_benchmark.rs +0 -165
- zhconv_rs-0.3.3/data/README.md +0 -12
- zhconv_rs-0.3.3/data/TWPhrasesName.txt +0 -84
- zhconv_rs-0.3.3/data/TWPhrasesOther.txt +0 -39
- zhconv_rs-0.3.3/data/cgroups/2016/345/271/264/345/244/252/345/271/263/346/264/213/351/242/261/351/242/250/345/255/243.json +0 -111
- zhconv_rs-0.3.3/data/cgroups/2017/345/271/264/345/244/252/345/271/263/346/264/213/351/242/261/351/242/250/345/255/243.json +0 -119
- zhconv_rs-0.3.3/data/cgroups/2018/345/271/264/345/244/252/345/271/263/346/264/213/351/242/261/351/242/250/345/255/243.json +0 -123
- zhconv_rs-0.3.3/data/cgroups/2019/345/271/264/345/244/252/345/271/263/346/264/213/351/242/261/351/242/250/345/255/243.json +0 -127
- zhconv_rs-0.3.3/data/cgroups/2020/345/271/264/345/244/252/345/271/263/346/264/213/351/242/261/351/242/250/345/255/243.json +0 -103
- zhconv_rs-0.3.3/data/cgroups/2021/345/271/264/345/244/252/345/271/263/346/264/213/351/242/261/351/242/250/345/255/243.json +0 -95
- zhconv_rs-0.3.3/data/cgroups/2022/345/271/264/345/244/252/345/271/263/346/264/213/351/242/261/351/242/250/345/255/243.json +0 -107
- zhconv_rs-0.3.3/data/cgroups/2023/345/271/264/345/244/252/345/271/263/346/264/213/351/242/261/351/242/250/345/255/243.json +0 -75
- zhconv_rs-0.3.3/data/cgroups/2024/345/271/264/345/244/252/345/271/263/346/264/213/351/242/261/351/242/250/345/255/243.json +0 -107
- zhconv_rs-0.3.3/data/cgroups/Anime.json +0 -1483
- zhconv_rs-0.3.3/data/cgroups/Aquarion.json +0 -43
- zhconv_rs-0.3.3/data/cgroups/Cartoon.json +0 -327
- zhconv_rs-0.3.3/data/cgroups/Crayon Shin-chan.json +0 -43
- zhconv_rs-0.3.3/data/cgroups/Entertainer.json +0 -7587
- zhconv_rs-0.3.3/data/cgroups/F1.json +0 -451
- zhconv_rs-0.3.3/data/cgroups/Food.json +0 -1031
- zhconv_rs-0.3.3/data/cgroups/KO Show.json +0 -763
- zhconv_rs-0.3.3/data/cgroups/KO TV Show.json +0 -2951
- zhconv_rs-0.3.3/data/cgroups/Lana Del Rey.json +0 -171
- zhconv_rs-0.3.3/data/cgroups/Linguistics.json +0 -11
- zhconv_rs-0.3.3/data/cgroups/MediaWiki special.json +0 -715
- zhconv_rs-0.3.3/data/cgroups/Movie.json +0 -13275
- zhconv_rs-0.3.3/data/cgroups/Music.json +0 -1127
- zhconv_rs-0.3.3/data/cgroups/PoliticiansPT.json +0 -259
- zhconv_rs-0.3.3/data/cgroups/Sandbox.json +0 -2575
- zhconv_rs-0.3.3/data/cgroups/Sports.json +0 -339
- zhconv_rs-0.3.3/data/cgroups/StephenKing.json +0 -155
- zhconv_rs-0.3.3/data/cgroups/TV.json +0 -3207
- zhconv_rs-0.3.3/data/cgroups/Taylor Swift.json +0 -499
- zhconv_rs-0.3.3/data/cgroups/TheBeatles.json +0 -95
- zhconv_rs-0.3.3/data/cgroups/ZH Show.json +0 -2043
- zhconv_rs-0.3.3/data/cgroups/arsenal.json +0 -299
- zhconv_rs-0.3.3/data/cgroups/check1.py +0 -58
- zhconv_rs-0.3.3/data/cgroups/chelsea.json +0 -431
- zhconv_rs-0.3.3/data/cgroups/fcbarcelona.json +0 -267
- zhconv_rs-0.3.3/data/cgroups/fcbayern.json +0 -867
- zhconv_rs-0.3.3/data/cgroups/sandbox.json +0 -15
- zhconv_rs-0.3.3/data/cgroups//344/277/261/344/271/220/351/203/250/350/266/263/347/220/203/350/201/224/350/265/233.json +0 -179
- zhconv_rs-0.3.3/data/cgroups//345/210/227/346/226/257/350/201/257.json +0 -759
- zhconv_rs-0.3.3/data/cgroups//345/215/227/347/276/216/347/220/203/346/234/203.json +0 -371
- zhconv_rs-0.3.3/data/cgroups//345/220/215/345/201/265/346/216/242/346/237/257/345/215/227.json +0 -131
- zhconv_rs-0.3.3/data/cgroups//346/263/260/345/234/213/344/272/272/345/220/215/345/217/212/345/234/260/345/220/215.json +0 -219
- zhconv_rs-0.3.3/data/cgroups//347/276/216/345/233/275/346/274/253/347/224/273.json +0 -1771
- zhconv_rs-0.3.3/data/cgroups//350/217/201/350/213/261/346/256/272/346/251/237.json +0 -215
- zhconv_rs-0.3.3/data/cgroups//350/221/241/350/266/205.json +0 -75
- zhconv_rs-0.3.3/data/cgroups//351/237/263/346/250/202/345/212/207.json +0 -6
- zhconv_rs-0.3.3/data/poetry.lock +0 -149
- zhconv_rs-0.3.3/pyo3/Cargo.toml +0 -25
- zhconv_rs-0.3.3/web/config-overrides.js +0 -47
- zhconv_rs-0.3.3/web/package.json +0 -54
- zhconv_rs-0.3.3/web/public/index.html +0 -47
- zhconv_rs-0.3.3/web/src/App.test.tsx +0 -9
- zhconv_rs-0.3.3/web/src/App.tsx +0 -124
- zhconv_rs-0.3.3/web/src/components/AboutDialog.tsx +0 -134
- zhconv_rs-0.3.3/web/src/components/OptionsControl.tsx +0 -141
- zhconv_rs-0.3.3/web/src/components/editorCommon.tsx +0 -8
- zhconv_rs-0.3.3/web/src/index.css +0 -13
- zhconv_rs-0.3.3/web/src/index.tsx +0 -17
- zhconv_rs-0.3.3/web/src/reportWebVitals.ts +0 -15
- zhconv_rs-0.3.3/web/src/setupTests.ts +0 -5
- zhconv_rs-0.3.3/web/yarn.lock +0 -12006
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/.github/workflows/pyo3.yml.deprecated +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/.gitignore +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/benches/25328-0.txt +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/benches/LICENSE.md +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/benches/data3185k.txt +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/benches/data54k.txt +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/benches/data689k.txt +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/benches/wikitext.txt +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/1D.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/2014/345/271/264/344/270/226/347/225/214/346/235/257/345/206/263/350/265/233.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/A Pink.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/A Song of Ice and Fire.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/AC Milan.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/ACmilan.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/ALeague.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/AT Places.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Aikatsu.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Apink.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Astronomy.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Avatar.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Avril Lavigne.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/BE Places.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/BLEACH.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/BUDDYCOMPLEX.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Bakuman.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Battle Spirits.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Bird.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/BirdP.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Bridge.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Butterfly.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/C&C.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/CANAAN.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/CL Places.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/COD.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/CWBTyphoonOld.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Canada.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Carnivorous Plant.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Chanel.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Charlie Chaplin.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Civil Law.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Code Black.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Code Geass.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/CodeLyoko.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Coldplay.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Composer.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Copyright.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Crazyracing Kartrider.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Criminal Law.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Cyber Formula.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Cyberpunk.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Cyclone.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/DCComics.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Danball Senki.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Dance.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Death Note.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Die Wei/303/237e Rose.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/ED.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Esports.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/FAcup.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Family Guy.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Frieren.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Fringe.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Frozen.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/FullmetalAlchemist.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Futurama.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/GBF.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/GGundam.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/GOSICK.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/GZFC.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/GaoGaiGar.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Geography.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Ghibli.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Glee.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/GossipGirl.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Guangzhou FC footballer.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Guardians of Ga'Hoole.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Gundam00.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/GundamAGE.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/GundamSeed.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/GundamTWFM.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/HTGAWM.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/HUNTER.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Half-Life.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Hannibal Lecter.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Hayate the Combat Butler.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Heroes of the Storm.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/IMF.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/IR Places.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/IT Places.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Jewelpet.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/KLeague.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Kao.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Korean.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/LEGO.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/La casa de papel.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Laos.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Legend of the Guardians.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Les Mis/303/251rables.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Lorde.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/LuaIT.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/LuaMovie.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/LuaShow.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/MA.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/MCD.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/MCFC.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/MLS.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Mabinogi.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/MapleStory.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Mariah Carey.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/MarvelNetflix.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Mazinger.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/McDonald's.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Michael Jackson.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/MigTest.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Might&Magic.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/My Little Pony.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/NHL.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Nintendo.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Nobel Prize.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/OnePiece.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/OshinoKo.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Overwatch.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/P&G.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Percy Jackson.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/PerryClass.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Philosophy.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Photography.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Pichi Pichi Pitch.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Pinnacle Islands.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Power Rangers.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Pretty Rhythm.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/RainbowSixSiege.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Reborn.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Rihanna.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/SNSD.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/SPL.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Sailor Moon.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Saint Seiya The Lost Canvas.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/SaintSeiyaOmega.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Selena Gomez.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Show.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Shugo Chara!.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Sia.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Signpost.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Sim.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Simpsons.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/SouthPark.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/StarCraft.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/StarCraft2.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/StarTrek.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/StarWars.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Summon Night.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/TCM.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/TLeague.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Table Tennis.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Tales.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Tamagotchi.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/TfL.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/The Promised Neverland.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/The World God Only Knows.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/ThePeanuts.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Transport for London.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/TropicalCycloneName.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Tunisia.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Twilight.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/TyphoonOld.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/US CA Cities.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/US Government.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/US Senators.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Unilever.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/VLeague.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Valkyria.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/WORKING!!.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Warcraft.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Warhammer.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Warriors.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Watch.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/Wow.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/free license.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/inter.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/leek.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/loghorizon.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/magi.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/neo-noir.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/regalia.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/rugby.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/specialpages.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups/vital.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//303/211lite.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//344/270/200/346/213/263/350/266/205/344/272/272.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//344/274/212/346/213/211/345/205/213/350/266/263/347/220/203.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//344/274/212/346/226/257/350/230/255.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//344/274/212/346/234/227/350/266/263/347/220/203.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//344/275/233/346/225/231.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//345/212/240/350/266/205/350/201/257.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//345/215/232/345/274/210/350/256/272.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//345/217/231/345/210/251/344/272/232/350/201/214/344/270/232/350/266/263/347/220/203/350/201/224/350/265/233.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//345/222/225/345/232/225/345/222/225/345/232/225/351/255/224/346/263/225/351/231/243.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//345/222/262-Saki-.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//345/226/256/351/233/231/346/233/270/345/220/215/350/231/237/350/275/211/346/217/233.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//345/243/260/344/270/264/345/205/266/345/242/203.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//345/246/226/346/200/252/346/211/213/351/214/266.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//345/250/233/346/250/202.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//345/260/217/351/255/224/345/245/263DoReMi.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//345/267/264/345/213/222/346/226/257/345/235/246/350/201/214/344/270/232/350/266/263/347/220/203/350/201/224/350/265/233.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//345/267/264/346/236/227/350/201/214/344/270/232/350/266/263/347/220/203/350/201/224/350/265/233.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//345/271/270/347/246/217/347/210/206/347/231/274/357/274/201/345/205/211/344/271/213/347/276/216/345/260/221/345/245/263.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//346/204/233/345/244/251/344/275/277/345/202/263/350/252/252.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//346/210/260/351/254/245/351/231/200/350/236/272 /351/213/274/351/220/265/345/245/207/345/205/265.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//346/211/223/345/267/245/345/220/247/357/274/201/351/255/224/347/216/213/345/244/247/344/272/272.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//346/230/237/345/205/211/346/250/202/345/234/222.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//346/232/227/345/275/261/350/257/227/347/253/240 (/345/212/250/347/224/273).json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//346/240/270/350/203/275.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//346/251/237/347/215/270/347/263/273/345/210/227.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//346/260/221/346/227/217.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//346/263/260/345/234/213/344/272/272/345/220/215.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//346/266/274/345/256/256/346/230/245/346/227/245/347/232/204/346/206/202/351/254/261.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//346/275/230/346/234/265/346/213/211/344/271/213/345/277/203.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//347/203/217/350/214/262/345/210/245/345/205/213/350/266/263/347/220/203/346/234/203.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//347/210/206/344/270/270.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//347/225/234/347/211/247.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//347/225/266/345/200/213/345/211/265/344/270/226/347/245/236.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//347/231/276/350/256/212/345/260/217/346/253/273.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//347/253/245/350/251/261/346/247/215/346/211/213/345/260/217/347/264/205/345/270/275.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//347/272/246/346/227/246/350/201/214/344/270/232/350/266/263/347/220/203/350/201/224/350/265/233.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//350/211/276/347/273/264/351/207/214/345/245/245/346/226/257.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//350/215/267/350/230/255/350/266/263/347/220/203/350/201/257/350/263/275.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//350/240/237/347/255/206/345/260/217/346/226/260.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//350/257/255/350/250/200/344/270/216/350/257/255/351/237/263.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//350/266/263/347/220/203/344/277/261/344/271/220/351/203/250.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//351/200/232/351/235/210/347/216/213.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//351/200/262/346/223/212/347/232/204/345/267/250/344/272/272.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//351/207/243/351/255/232/350/207/272/345/210/227/345/266/274.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//351/226/203/351/233/273/345/215/201/344/270/200/344/272/272.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//351/226/213/351/227/212/345/244/251/347/251/272/357/274/201/345/205/211/344/271/213/347/276/216/345/260/221/345/245/263.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//351/227/207.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//351/230/277/346/233/274/350/201/214/344/270/232/350/266/263/347/220/203/350/201/224/350/265/233.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//351/230/277/350/201/224/351/205/213/350/201/214/344/270/232/350/266/263/347/220/203/350/201/224/350/265/233.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//351/231/215/344/270/226/347/245/236/351/200/232.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//351/251/205/351/255/224/345/260/221/345/271/264.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//351/255/224/346/263/225/345/222/252/350/267/257/345/222/252/350/267/257.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//351/273/216/345/267/264/345/253/251/350/201/214/344/270/232/350/266/263/347/220/203/350/201/224/350/265/233.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//351/273/221/345/237/267/344/272/213.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/cgroups//351/273/221/345/241/224/347/263/273/345/210/227.json" +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/merge_cgroups_for_web.py +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/data/pyproject.toml +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/pyo3/.gitignore +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/pyo3/zhconv_rs.pyi +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/pyproject.toml +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/src/pagerules.rs +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/web/README.md +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/web/public/logo.ico +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/web/public/logo192.png +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/web/public/logo512.png +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/web/public/manifest.json +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/web/public/robots.txt +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/web/src/App.css +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/web/src/logo.svg +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/web/src/react-app-env.d.ts +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/web/src/utils.ts +0 -0
- {zhconv_rs-0.3.3 → zhconv_rs-0.4.1}/web/tsconfig.json +0 -0
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
2
|
set -eu
|
|
3
|
-
|
|
3
|
+
# In Pages build environment version 3, the default is yarn berry.
|
|
4
|
+
# npm install --global yarn || true
|
|
5
|
+
yarn --version
|
|
4
6
|
|
|
5
7
|
curl -o rustup.sh https://sh.rustup.rs
|
|
6
8
|
chmod +x rustup.sh
|
|
7
|
-
./rustup.sh -y --default-toolchain 1.81.0
|
|
9
|
+
./rustup.sh -y # --default-toolchain 1.81.0
|
|
8
10
|
|
|
9
11
|
. $HOME/.cargo/env
|
|
10
12
|
curl -o wasm-init.sh https://rustwasm.github.io/wasm-pack/installer/init.sh
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
version = 1
|
|
2
|
+
|
|
3
|
+
[[analyzers]]
|
|
4
|
+
name = "python"
|
|
5
|
+
|
|
6
|
+
[analyzers.meta]
|
|
7
|
+
runtime_version = "3.x.x"
|
|
8
|
+
|
|
9
|
+
[[analyzers]]
|
|
10
|
+
name = "rust"
|
|
11
|
+
|
|
12
|
+
[analyzers.meta]
|
|
13
|
+
msrv = "stable"
|
|
14
|
+
|
|
15
|
+
[[code_formatters]]
|
|
16
|
+
name = "black"
|
|
17
|
+
|
|
18
|
+
[[code_formatters]]
|
|
19
|
+
name = "rustfmt"
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
pull_request:
|
|
6
|
+
|
|
7
|
+
env:
|
|
8
|
+
CARGO_TERM_COLOR: always
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
build-main:
|
|
12
|
+
strategy:
|
|
13
|
+
matrix:
|
|
14
|
+
featureset:
|
|
15
|
+
- flag: ""
|
|
16
|
+
- flag: "--all-features"
|
|
17
|
+
- flag: "--no-default-features"
|
|
18
|
+
runs-on: ubuntu-latest
|
|
19
|
+
steps:
|
|
20
|
+
- uses: actions/checkout@v2
|
|
21
|
+
- name: Build lib
|
|
22
|
+
run: |
|
|
23
|
+
cargo --version
|
|
24
|
+
cargo build --verbose ${{ matrix.featureset.flag }}
|
|
25
|
+
- name: Build bin
|
|
26
|
+
if: matrix.featureset.flag == ''
|
|
27
|
+
run: |
|
|
28
|
+
cargo build --features bin-build --bin zhconv --verbose
|
|
29
|
+
- name: Test
|
|
30
|
+
run: |
|
|
31
|
+
# comment out benchmark-only dependencies, which require opencc installation
|
|
32
|
+
sed -i -E 's/^(ferrous-opencc|opencc-rust|fast2s|opencc-fmmseg)/#\1/' Cargo.toml
|
|
33
|
+
# and disable the relevant benchmark to avoid clippy warnings
|
|
34
|
+
perl -0777 -i -pe 's/\[\[bench\]\]\s*\n\s*harness\s*=\s*false\s*\n\s*name\s*=\s*"compare_benchmark"\s*\nrequired-features\s*=\s*\["bench"\]?//s' Cargo.toml
|
|
35
|
+
echo "" > benches/compare_benchmark.rs
|
|
36
|
+
|
|
37
|
+
cargo test --workspace ${{ matrix.featureset.flag }} --verbose
|
|
38
|
+
- name: Check Format
|
|
39
|
+
run: cargo fmt -- --check
|
|
40
|
+
- name: Clippy
|
|
41
|
+
run: cargo clippy --workspace --all-targets ${{ matrix.featureset.flag }} -- -D warnings
|
|
42
|
+
|
|
43
|
+
build-pyo3:
|
|
44
|
+
needs: build-main
|
|
45
|
+
runs-on: ubuntu-latest
|
|
46
|
+
steps:
|
|
47
|
+
- uses: actions/checkout@v3
|
|
48
|
+
- name: Symlink README
|
|
49
|
+
run: |
|
|
50
|
+
cd pyo3/
|
|
51
|
+
ln -s ../README.md ./
|
|
52
|
+
- uses: messense/maturin-action@v1
|
|
53
|
+
with:
|
|
54
|
+
manylinux: auto
|
|
55
|
+
command: build
|
|
56
|
+
args: --release --sdist -o pyo3/dist --find-interpreter -m pyo3/Cargo.toml
|
|
57
|
+
|
|
58
|
+
build-typst:
|
|
59
|
+
needs: build-main
|
|
60
|
+
runs-on: ubuntu-latest
|
|
61
|
+
defaults:
|
|
62
|
+
run:
|
|
63
|
+
working-directory: typst/
|
|
64
|
+
steps:
|
|
65
|
+
- uses: actions/checkout@v3
|
|
66
|
+
- name: Install Wasm target for Rust
|
|
67
|
+
run: rustup target add wasm32-unknown-unknown
|
|
68
|
+
- name: Install Typst
|
|
69
|
+
run: |
|
|
70
|
+
curl -fsSL -O https://github.com/typst/typst/releases/download/v0.14.0/typst-x86_64-unknown-linux-musl.tar.xz
|
|
71
|
+
tar xf typst-x86_64-unknown-linux-musl.tar.xz
|
|
72
|
+
mv typst-x86_64-unknown-linux-musl/typst /home/runner/
|
|
73
|
+
working-directory: /tmp
|
|
74
|
+
- name: Build
|
|
75
|
+
run: |
|
|
76
|
+
cargo --version
|
|
77
|
+
cargo build --release --verbose --target wasm32-unknown-unknown
|
|
78
|
+
- name: Typst Compile
|
|
79
|
+
run: |
|
|
80
|
+
cp target/wasm32-unknown-unknown/release/zhconv_typst.wasm ./
|
|
81
|
+
/home/runner/typst --version
|
|
82
|
+
/home/runner/typst compile example.typ
|
|
83
|
+
- name: Clippy
|
|
84
|
+
run: cargo clippy --target wasm32-unknown-unknown --all-features -- -D warnings
|
|
85
|
+
- name: Check Format
|
|
86
|
+
run: cargo fmt -- --check
|
|
87
|
+
|
|
88
|
+
# now Pages.dev do this for us
|
|
89
|
+
# build-web:
|
|
90
|
+
# needs: build-main
|
|
91
|
+
# runs-on: ubuntu-latest
|
|
92
|
+
# steps:
|
|
93
|
+
# - uses: actions/checkout@v2
|
|
94
|
+
# - uses: actions/setup-node@v1
|
|
95
|
+
# with:
|
|
96
|
+
# node-version: "16"
|
|
97
|
+
# - name: Init web
|
|
98
|
+
# working-directory: web/
|
|
99
|
+
# run: |
|
|
100
|
+
# node --version
|
|
101
|
+
# yarn --version
|
|
102
|
+
# yarn install
|
|
103
|
+
# - name: Build
|
|
104
|
+
# working-directory: web/
|
|
105
|
+
# run: yarn build
|
|
106
|
+
# - name: Test
|
|
107
|
+
# working-directory: web/
|
|
108
|
+
# run: yarn test # no effective test so far
|
|
109
|
+
# adapted from: https://github.com/Gowee/cidr-aggregator/blob/9c02241ab64e5cf62e33375e55e09502385bdc61/.github/workflows/main.yml#L1
|
|
110
|
+
# which is in turn adapted from:
|
|
111
|
+
# https://github.com/Gowee/json2pyi/blob/4e13b4767f97d79e90ecf19a0cb21b1e799d7d48/.github/workflows/main.yml
|
|
@@ -14,10 +14,10 @@ jobs:
|
|
|
14
14
|
toolchain: stable
|
|
15
15
|
- name: Install wasm-pack
|
|
16
16
|
run: |
|
|
17
|
-
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
|
|
17
|
+
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
|
|
18
18
|
- name: Build pkg
|
|
19
19
|
run: |
|
|
20
|
-
wasm-pack build --release -d pkg-bundler &&
|
|
20
|
+
wasm-pack build --release -d pkg-bundler -- --features wasm && wasm-pack build --release -d pkg-web -t web -- --features wasm
|
|
21
21
|
- name: Upload pkg
|
|
22
22
|
uses: actions/upload-artifact@v4
|
|
23
23
|
with:
|
|
@@ -31,7 +31,7 @@ jobs:
|
|
|
31
31
|
environment: npm
|
|
32
32
|
runs-on: ubuntu-latest
|
|
33
33
|
if: "startsWith(github.ref, 'refs/tags/')"
|
|
34
|
-
needs: [
|
|
34
|
+
needs: [build]
|
|
35
35
|
steps:
|
|
36
36
|
- uses: actions/setup-node@v3
|
|
37
37
|
with:
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
name: "Release"
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
- test
|
|
8
|
+
tags:
|
|
9
|
+
- v*
|
|
10
|
+
# release:
|
|
11
|
+
# types: [created]
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
build:
|
|
15
|
+
name: build ${{ matrix.target }}
|
|
16
|
+
runs-on: ${{ matrix.os }}
|
|
17
|
+
strategy:
|
|
18
|
+
fail-fast: false
|
|
19
|
+
matrix:
|
|
20
|
+
include:
|
|
21
|
+
- target: x86_64-pc-windows-gnu
|
|
22
|
+
os: windows-2025
|
|
23
|
+
cargo: cargo
|
|
24
|
+
binext: .exe # binary extension
|
|
25
|
+
# archive: zip
|
|
26
|
+
- target: x86_64-unknown-linux-musl
|
|
27
|
+
os: ubuntu-latest
|
|
28
|
+
cargo: cargo
|
|
29
|
+
binext: ""
|
|
30
|
+
# archive: tar.gz tar.xz
|
|
31
|
+
- target: aarch64-unknown-linux-musl
|
|
32
|
+
os: ubuntu-latest
|
|
33
|
+
cargo: cross
|
|
34
|
+
binext: ""
|
|
35
|
+
- target: x86_64-apple-darwin
|
|
36
|
+
os: macos-latest
|
|
37
|
+
cargo: cargo
|
|
38
|
+
binext: ""
|
|
39
|
+
# archive: zip
|
|
40
|
+
steps:
|
|
41
|
+
- uses: actions/checkout@v3
|
|
42
|
+
- uses: actions-rs/toolchain@v1
|
|
43
|
+
with:
|
|
44
|
+
toolchain: stable
|
|
45
|
+
target: ${{ matrix.target }}
|
|
46
|
+
override: true
|
|
47
|
+
profile: minimal
|
|
48
|
+
- name: Install cross
|
|
49
|
+
run: |
|
|
50
|
+
cargo install cross --git https://github.com/cross-rs/cross.git
|
|
51
|
+
if: matrix.cargo == 'cross'
|
|
52
|
+
- name: Build and strip
|
|
53
|
+
shell: bash # on win, the default is ps
|
|
54
|
+
run: |
|
|
55
|
+
mkdir bin
|
|
56
|
+
${{ matrix.cargo }} build --features bin-build --bin zhconv --release --target ${{ matrix.target }}
|
|
57
|
+
mv target/${{ matrix.target }}/release/zhconv${{ matrix.binext }} "bin/zhconv-${{ matrix.target }}${{ matrix.binext }}"
|
|
58
|
+
${{ matrix.cargo }} build --features bin-build --features opencc --bin zhconv --release --target ${{ matrix.target }}
|
|
59
|
+
mv target/${{ matrix.target }}/release/zhconv${{ matrix.binext }} "bin/zhconv-opencc-${{ matrix.target }}${{ matrix.binext }}"
|
|
60
|
+
strip -v "$f" || echo "strip failed"
|
|
61
|
+
# if [ "${{ matrix.os }}" = "windows-2025" ]; then
|
|
62
|
+
# 7z a "$staging.zip" "$staging"
|
|
63
|
+
# else
|
|
64
|
+
# tar czf "$staging.tar.gz" "$staging"
|
|
65
|
+
# fi
|
|
66
|
+
- name: Upload artifact
|
|
67
|
+
uses: actions/upload-artifact@v4
|
|
68
|
+
with:
|
|
69
|
+
name: binaries-${{ matrix.target }}
|
|
70
|
+
path: bin/
|
|
71
|
+
|
|
72
|
+
release:
|
|
73
|
+
runs-on: ubuntu-latest
|
|
74
|
+
# trigger real release only on tag push
|
|
75
|
+
if: "startsWith(github.ref, 'refs/tags/')"
|
|
76
|
+
needs: [build]
|
|
77
|
+
steps:
|
|
78
|
+
- uses: actions/download-artifact@v4
|
|
79
|
+
with:
|
|
80
|
+
pattern: binaries-*
|
|
81
|
+
merge-multiple: true
|
|
82
|
+
- name: Release
|
|
83
|
+
uses: softprops/action-gh-release@v2
|
|
84
|
+
with:
|
|
85
|
+
files: |
|
|
86
|
+
*
|
|
@@ -35,7 +35,6 @@ jobs:
|
|
|
35
35
|
apiToken: ${{ secrets.CF_API_TOKEN }}
|
|
36
36
|
accountId: ${{ secrets.CF_ACCOUNT_ID }}
|
|
37
37
|
workingDirectory: worker
|
|
38
|
-
|
|
39
38
|
# Note:
|
|
40
39
|
# To activate authentication, set the `API_TOKEN` secret, via the CF dashboard or `wrangler secret put API_TOKEN`.
|
|
41
40
|
# To change the 2MiB default request body limit, set the `BODY_LIMIT` envvar, via the dashboard or wrangler.toml.
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
(CAUTION: primarily vibed by Gemini)
|
|
5
|
+
|
|
6
|
+
## v0.4.1 (2026-02-05)
|
|
7
|
+
|
|
8
|
+
### Core & CLI
|
|
9
|
+
- **Simplified Conversion Optimizations**: Omit "!HKVariants" and "!TWVariants" from OpenCC cofnig when targeting Simplified Chinese to avoid misconversion.
|
|
10
|
+
- **Improved Variant Inference**: Enhanced accuracy by omitting no-op pairs during character counting.
|
|
11
|
+
- **Fine-grained Feature Gating**: Refactored conversion table features for granular control over ruleset inclusion.
|
|
12
|
+
- **Dependency Cleanup**: Removed `once_cell` in favor of standard library features.
|
|
13
|
+
- **Data Sync**: Synchronized conversion tables with the latest upstream rules.
|
|
14
|
+
|
|
15
|
+
### Web Application
|
|
16
|
+
- **Frontend Modernization**: Upgraded the stack to **React 19**, **Material UI v7**, and **Vite**.
|
|
17
|
+
- **Enhanced Ruleset Selection**: Added support for toggling between MediaWiki and OpenCC rulesets, or using both concurrently.
|
|
18
|
+
- **Dynamic Variant Filtering**: Automatically hides target variants unsupported by the current ruleset.
|
|
19
|
+
- **File Conversion**: Added the ability to convert local text files directly in the browser.
|
|
20
|
+
- **Refactor Codebase**: Refactored the codebase with ContextProvider to improve performance and maintainability.
|
|
21
|
+
- **Infrastructure**: Migrated to **Yarn Berry (v4)** and enforced stricter ESLint/Prettier rules.
|
|
22
|
+
|
|
23
|
+
## v0.4.0 (2025-12-02)
|
|
24
|
+
|
|
25
|
+
- **Feature Gating**: Disabled WASM feature by default to be friendly as a library.
|
|
26
|
+
- **OpenCC Integration**: Bundled OpenCC binaries in releases and fixed CI build issues.
|
|
27
|
+
- **Benchmarking**: Added comprehensive benchmark comparisons with other conversion crates.
|
|
28
|
+
- **Maintenance**: Updated rulesets from upstream and fixed outdated CI configurations.
|
|
29
|
+
|
|
30
|
+
## v0.3.3 (2025-01-15)
|
|
31
|
+
|
|
32
|
+
- **MediaWiki Alignment**: Fixed nested rules handling to better match MediaWiki's behavior.
|
|
33
|
+
- **Worker Enhancements**: Made request body limit configurable and optimized API query parameter representation.
|
|
34
|
+
- **Wasm/Web**: Added conversion triggers upon option changes.
|
|
35
|
+
|
|
36
|
+
## v0.3.2 (2024-11-27)
|
|
37
|
+
|
|
38
|
+
- **New Platform**: Initialized **Typst** integration with kebab-case function naming.
|
|
39
|
+
- **PyO3**: Refined CI and module naming for Python bindings.
|
|
40
|
+
- **Bug Fixes**: Resolved panics in `convert_to_with` when skipping characters at boundaries.
|
|
41
|
+
|
|
42
|
+
## v0.3.1 (2024-03-22)
|
|
43
|
+
|
|
44
|
+
- **Optional Rulesets**: Made OpenCC optional in WASM builds.
|
|
45
|
+
- **Conversion Safety**: Applied more conservative rules for one-to-many conversions.
|
|
46
|
+
- **Performance**: Documented build size changes and performance improvements in the v0.3 series.
|
|
47
|
+
|
|
48
|
+
## v0.3.0 (2023-07-05)
|
|
49
|
+
|
|
50
|
+
- **Performance Engine**: Switched to `daachorse` (Aho-Corasick) for significantly faster linear-time conversions.
|
|
51
|
+
- **Compression**: Implemented ruleset compression to reduce binary size.
|
|
52
|
+
- **Variant Inference**: Introduced a more intuitive method for `infer_variant_confidence`.
|
|
53
|
+
- **MediaWiki Support**: Added a secondary automaton to handle complex global rules in wikitext.
|
|
54
|
+
|
|
55
|
+
## v0.2.0 (2023-05-15)
|
|
56
|
+
|
|
57
|
+
- **Ruleset Expansion**: Introduced OpenCC rulesets in addition to MediaWiki rules.
|
|
58
|
+
- **Regional Support**: Added ruleset precedence for regional variants (TW/HK/CN).
|
|
59
|
+
- **Web App**: Implemented localStorage persistence for selected variants.
|
|
60
|
+
|
|
61
|
+
## v0.1.0 (2022-09-08)
|
|
62
|
+
|
|
63
|
+
- **Initial Release**: First stable release of `zhconv-rs`.
|
|
64
|
+
- **Multi-Platform**: Support for CLI, WASM, and Python (PyO3).
|
|
65
|
+
- **MediaWiki Core**: Integrated core conversion rules from MediaWiki.
|
|
66
|
+
- **Relicensing**: Switched project license to GPL-2.0-or-later for better compatibility.
|