├── .github └── workflows │ └── check.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── Rakefile ├── demo.png ├── demo.tape ├── demo ├── bar │ ├── 01.txt │ ├── 02.txt │ └── 03.txt └── foo │ ├── 01.txt │ ├── 02.txt │ └── 03.txt ├── rust-toolchain.toml ├── src ├── digest_ext.rs ├── escape.rs ├── main.rs └── utils.rs └── tests └── main.rs /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenc-nanashi/ccsum/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenc-nanashi/ccsum/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenc-nanashi/ccsum/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenc-nanashi/ccsum/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenc-nanashi/ccsum/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenc-nanashi/ccsum/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenc-nanashi/ccsum/HEAD/Rakefile -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenc-nanashi/ccsum/HEAD/demo.png -------------------------------------------------------------------------------- /demo.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenc-nanashi/ccsum/HEAD/demo.tape -------------------------------------------------------------------------------- /demo/bar/01.txt: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /demo/bar/02.txt: -------------------------------------------------------------------------------- 1 | Good morning world 2 | -------------------------------------------------------------------------------- /demo/bar/03.txt: -------------------------------------------------------------------------------- 1 | Good night world 2 | -------------------------------------------------------------------------------- /demo/foo/01.txt: -------------------------------------------------------------------------------- 1 | Hello world 2 | -------------------------------------------------------------------------------- /demo/foo/02.txt: -------------------------------------------------------------------------------- 1 | Good morning world 2 | -------------------------------------------------------------------------------- /demo/foo/03.txt: -------------------------------------------------------------------------------- 1 | Good night world 2 | -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "1.88.0" 3 | -------------------------------------------------------------------------------- /src/digest_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenc-nanashi/ccsum/HEAD/src/digest_ext.rs -------------------------------------------------------------------------------- /src/escape.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenc-nanashi/ccsum/HEAD/src/escape.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenc-nanashi/ccsum/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenc-nanashi/ccsum/HEAD/src/utils.rs -------------------------------------------------------------------------------- /tests/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenc-nanashi/ccsum/HEAD/tests/main.rs --------------------------------------------------------------------------------