diff options
author | Aleksey Kladov <[email protected]> | 2020-10-20 16:13:15 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-10-20 16:13:15 +0100 |
commit | f753c3ecd20c4a448403d2d7d9b334a289f9e5b3 (patch) | |
tree | 8ac8a8f761db3bd3b60446001739b94bb1ed44dd /docs | |
parent | 3b1a648539487c08bc613b6fd6e573b0e0e38948 (diff) |
Support Display name in project.json
Diffstat (limited to 'docs')
-rw-r--r-- | docs/user/manual.adoc | 3 |
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 | ||
289 | interface Crate { | 289 | interface 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. |