Docs.rs
aptu-coder-core-0.20.1
aptu-coder-core 0.20.1
Docs.rs crate page
Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
clouatre
Dependencies
base64 ^0.22
normal
blake3 ^1
normal
ignore ^0.4
normal
lru ^0.18
normal
rayon ^1
normal
regex ^1
normal
schemars ^1
normal
optional
serde ^1
normal
serde_json ^1
normal
snap ^1
normal
tempfile =3.27.0
normal
thiserror ^2.0.18
normal
tokio-util ^0.7
normal
tracing ^0.1
normal
tree-sitter ^0.26.6
normal
tree-sitter-c-sharp ^0.23.5
normal
optional
tree-sitter-cpp ^0.23.4
normal
optional
tree-sitter-css ^0.25.0
normal
optional
tree-sitter-fortran ^0.6.0
normal
optional
tree-sitter-go ^0.25.0
normal
optional
tree-sitter-java ^0.23.5
normal
optional
tree-sitter-javascript ^0.25.0
normal
optional
tree-sitter-kotlin-ng ^1.1.0
normal
optional
tree-sitter-md ^0.5.3
normal
optional
tree-sitter-python ^0.25.0
normal
optional
tree-sitter-rust ^0.24.2
normal
optional
tree-sitter-typescript ^0.23.2
normal
optional
tree-sitter-yaml ^0.7.2
normal
optional
criterion =0.8.2
dev
schemars ^1
dev
serde_json ^1
dev
tempfile =3.27.0
dev
tokio ^1
dev
tokio-util ^0.7
dev
tracing-subscriber ^0.3
dev
Versions
60.33%
of the crate is documented
Platform
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
Skip to main content
Module schema_helpers
aptu_
coder_
core
0.20.1
Module schema_
helpers
Module Items
Constants
Functions
In crate aptu_
coder_
core
aptu_coder_core
Module
schema_
helpers
Copy item path
Source
Constants
§
SUPPORTED_
FILE_
EXT_
PATTERN
Regex matching all supported source file extensions (case-insensitive).
Functions
§
integer_
schema
Returns a plain integer schema without the non-standard “format”: “uint” that schemars emits by default for usize/u32 fields.
option_
integer_
schema
Returns a nullable integer schema for Option
/ Option
fields.
option_
page_
size_
schema
Returns a nullable integer schema for
Option<usize>
page_size
fields. Enforces minimum: 1 to prevent callers from sending
page_size=0
, which would cause
paginate_slice
to make no progress and loop on the same cursor.
supported_
file_
path_
schema
Returns a string schema with a
pattern
constraint covering all supported source file extensions. Used as
schema_with
on
path
fields.