-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrustdoc.toml
More file actions
35 lines (25 loc) · 846 Bytes
/
rustdoc.toml
File metadata and controls
35 lines (25 loc) · 846 Bytes
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
# Rustdoc configuration for VeridianOS
# Enable unstable features for better documentation
unstable-features = true
# Enable index page generation
enable-index-page = true
# Set default theme
default-theme = "dark"
# Document private items (important for kernel internals)
document-private-items = true
# Document hidden items
document-hidden-items = true
# Passes to rustdoc
passes = ["strip-hidden", "strip-private"]
# External HTML files
html-in-header = "docs/assets/header.html"
html-before-content = "docs/assets/before.html"
html-after-content = "docs/assets/after.html"
# Playground settings (disabled for kernel code)
playground = { editable = false, copyable = false }
# Search settings
search = { enable = true }
# Generate source links
[source]
git-repository = "https://github.com/doublegate/VeridianOS"
git-branch = "main"