-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathminidoc.toml
More file actions
34 lines (30 loc) · 1001 Bytes
/
Copy pathminidoc.toml
File metadata and controls
34 lines (30 loc) · 1001 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
[project]
name = "MiniSQL"
description = "MiniSQL is a native relational database implemented in MiniLang, including transactional storage, SQL execution and optimization, concurrent client/server operation, security, backup, replication, administrative tools, and language connectors."
entry = "src/apps/minisqld/main.ml"
source_roots = ["src/minisql", "src/apps"]
include = ["src", "../MiniLangCompilerML"]
exclude = ["build", "docs/api", "src/tests", "tests"]
target = "windows-x64"
[documentation]
include_internal = false
reachable_only = false
strict = true
dependencies = "summary"
contract_warnings = "public"
summary_quality_warnings = "public"
duplicate_summary_threshold = 40
page_granularity = "container"
[output]
formats = ["html", "markdown"]
html_dir = "docs/api/html"
markdown_dir = "docs/api/markdown"
markdown_profile = "repository"
[graphs]
imports = true
calls = true
types = true
max_nodes = 300
[links]
repository = "https://github.com/MiniLangProject/MiniSQL"
ref = "main"