hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

hare-deps.1.scd (1069B)


      1 hare-deps(1)
      2 
      3 # NAME
      4 
      5 hare deps - display the dependency tree of a Hare program or module
      6 
      7 # SYNOPSIS
      8 
      9 *hare deps* [-hd] [-T _tagset_] [_path_|_module_]
     10 
     11 # DESCRIPTION
     12 
     13 *hare deps* displays the dependency tree of a Hare program or module, as per the
     14 algorithm described in *DEPENDENCY RESOLUTION* in *hare-module*(5). The _path_
     15 argument is a path to a Hare source file or a directory which contains a Hare
     16 module (see *hare-module*(5)). If no path is given, the Hare module contained in
     17 the current working directly is used.
     18 
     19 By default, the dependency tree is pretty-printed using Unicode box-drawing
     20 characters.
     21 
     22 # OPTIONS
     23 
     24 *-h*
     25 	Print the help text.
     26 
     27 *-d*
     28 	Print the dependency tree as a dot file for use with *graphviz*(1).
     29 
     30 *-T* _tagset_
     31 	Set or unset build tags. See *BUILD TAGS* in *hare-module*(5).
     32 
     33 # ENVIRONMENT
     34 
     35 The following environment variables affect *hare deps*' execution:
     36 
     37 |[ *HAREPATH*
     38 :< The list of directories to search for dependencies in.
     39 |  *NO_COLOR*
     40 :  Disables all color output when set to a non-empty string.
     41 
     42 # SEE ALSO
     43 
     44 *hare-module*(5)