1
1
mirror of https://github.com/sol/hpack.git synced 2024-10-04 03:38:00 +03:00

Expand the docs for dependencies a little bit.

This commit is contained in:
quasicomputational 2018-09-09 12:33:17 +01:00
parent 3ad53c756a
commit e3c27620ef

View File

@ -302,6 +302,18 @@ The individual dependencies can also be specified as an object:
- name: containers
```
You can use objects at both levels, or have a mix of valid ways to
specify the individual dependencies:
```
dependencies:
base:
version: ">= 4.10.1.0"
# If you don't give a version, it defaults to 'any version'.
containers: {}
transformers: ">= 0.5.5.0 && < 5.6"
```
Individual dependencies as objects are only supported from version
`0.31.0`.