aboutsummaryrefslogtreecommitdiff
path: root/docs/user/manual.adoc
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-10-20 16:13:15 +0100
committerAleksey Kladov <[email protected]>2020-10-20 16:13:15 +0100
commitf753c3ecd20c4a448403d2d7d9b334a289f9e5b3 (patch)
tree8ac8a8f761db3bd3b60446001739b94bb1ed44dd /docs/user/manual.adoc
parent3b1a648539487c08bc613b6fd6e573b0e0e38948 (diff)
Support Display name in project.json
Diffstat (limited to 'docs/user/manual.adoc')
-rw-r--r--docs/user/manual.adoc3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/user/manual.adoc b/docs/user/manual.adoc
index e95bff8f9..7e8adcdb7 100644
--- a/docs/user/manual.adoc
+++ b/docs/user/manual.adoc
@@ -287,6 +287,9 @@ interface JsonProject {
287} 287}
288 288
289interface Crate { 289interface Crate {
290 /// Optional crate name used for display purposes, without affecting semantics.
291 /// See the `deps` key for semantically-significant crate names.
292 display_name?: string;
290 /// Path to the root module of the crate. 293 /// Path to the root module of the crate.
291 root_module: string; 294 root_module: string;
292 /// Edition of the crate. 295 /// Edition of the crate.