1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# GitHub CODEOWNERS file
# This file defines who is responsible for reviewing changes to different parts of the codebase
# See: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# Core Rust library
/src/ @yfedoseev
/Cargo.toml @yfedoseev
/build.rs @yfedoseev
# C FFI interface
/src/ffi.rs @yfedoseev
/include/ @yfedoseev
# Language bindings
/bindings/go/ @yfedoseev
/bindings/nodejs/ @yfedoseev
/bindings/java/ @yfedoseev
/bindings/csharp/ @yfedoseev
/bindings/wasm/ @yfedoseev
# Python bindings
/python/ @yfedoseev
/pyproject.toml @yfedoseev
# Documentation
/docs/ @yfedoseev
/README.md @yfedoseev
/CHANGELOG.md @yfedoseev
# Examples
/examples/ @yfedoseev
# Repository configuration
/.github/ @yfedoseev
/.gitignore @yfedoseev
/CONTRIBUTING.md @yfedoseev
/CODE_OF_CONDUCT.md @yfedoseev
/LICENSE-MIT @yfedoseev
/LICENSE-APACHE @yfedoseev
# Tests
/tests/ @yfedoseev
/python/tests/ @yfedoseev
/bindings/*/tests/ @yfedoseev
# Configuration files
*.toml @yfedoseev
*.yaml @yfedoseev
*.yml @yfedoseev