View | Details | Raw Unified | Return to bug 224459 | Differences between
and this patch

Collapse All | Expand All

(-)w/lang/crystal/Makefile (+90 lines)
Added Link Here
1
# $FreeBSD$
2
3
PORTNAME=	crystal
4
DISTVERSION=	0.24.1
5
CATEGORIES=	lang
6
MASTER_SITES=	https://unrelentingtech.s3.dualstack.eu-west-1.amazonaws.com/crystal/:bootstrap
7
DISTFILES=	${BOOTSTRAP_PATH}:bootstrap
8
DIST_SUBDIR=	${PORTNAME}
9
EXTRACT_ONLY=	${DISTNAME}${EXTRACT_SUFX}
10
11
MAINTAINER=	greg@unrelenting.technology
12
COMMENT=	Language with Ruby-like syntax and static type checking
13
14
LICENSE=	APACHE20
15
16
ONLY_FOR_ARCHS?=	amd64
17
ONLY_FOR_ARCHS_REASON=	requires prebuilt bootstrap compiler
18
19
LIB_DEPENDS=	libgc-threaded.so:devel/boehm-gc-threaded \
20
		libevent.so:devel/libevent \
21
		libpcre.so:devel/pcre \
22
		${LOCALBASE}/llvm50/lib/libLLVM-5.0.so:devel/llvm50
23
BUILD_DEPENDS=	llvm-config50:devel/llvm50
24
25
USES=		compiler gmake pkgconfig
26
27
USE_GITHUB=	yes
28
GH_ACCOUNT=	crystal-lang
29
30
MAKE_ARGS=	SHELL=sh \
31
		LLVM_CONFIG=llvm-config50 \
32
		FLAGS="--release --no-debug" \
33
		EXPORTS='CRYSTAL_CONFIG_PATH="lib:${PREFIX}/lib/${PORTNAME}"' \
34
		CRYSTAL_CACHE_DIR="${WRKDIR}/cache"
35
36
PORTDOCS=	*
37
PORTEXAMPLES=	*
38
39
OPTIONS_DEFINE=		DOCS EXAMPLES BASH ZSH
40
OPTIONS_DEFAULT=	DOCS EXAMPLES BASH ZSH
41
OPTIONS_SUB=		yes
42
43
.include <bsd.port.options.mk>
44
45
.if ${OSVERSION} >= 1200000
46
BOOTSTRAP_PATH=	crystal-0.24.0-freebsd12.0
47
.else
48
BOOTSTRAP_PATH=	crystal-0.24.0-freebsd11.1
49
.endif
50
.if ${OSVERSION} < 1100000
51
IGNORE=		not supported on 10.x or older
52
.endif
53
.if ${OPSYS} != FreeBSD
54
IGNORE=		not supported on anything but FreeBSD
55
.endif
56
57
post-extract:
58
	${MKDIR} ${WRKSRC}/.build
59
	${CP} ${DISTDIR}/${DIST_SUBDIR}/${BOOTSTRAP_PATH} ${WRKSRC}/.build/crystal
60
	${CHMOD} +x ${WRKSRC}/.build/crystal
61
62
post-patch:
63
	${LN} -s x86_64-portbld-freebsd ${WRKSRC}/src/lib_c/x86_64-unknown-freebsd
64
65
do-build-DOCS-on:
66
	cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} docs \
67
			CRYSTAL_CACHE_DIR="${WRKDIR}/cache"
68
69
do-install:
70
	${INSTALL_PROGRAM} ${INSTALL_WRKSRC}/.build/crystal ${STAGEDIR}${PREFIX}/bin/
71
	${INSTALL_MAN} ${INSTALL_WRKSRC}/man/crystal.1 ${STAGEDIR}${MANPREFIX}/man/man1/
72
	(cd ${INSTALL_WRKSRC}/src && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/lib/${PORTNAME})
73
74
do-install-DOCS-on:
75
	(cd ${INSTALL_WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR})
76
77
do-install-EXAMPLES-on:
78
	(cd ${INSTALL_WRKSRC}/samples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})
79
80
do-install-BASH-on:
81
	${MKDIR} ${STAGEDIR}${LOCALBASE}/etc/bash_completion.d
82
	${INSTALL_DATA} ${INSTALL_WRKSRC}/etc/completion.bash \
83
			${STAGEDIR}${LOCALBASE}/etc/bash_completion.d/_crystal.bash
84
85
do-install-ZSH-on:
86
	${MKDIR} ${STAGEDIR}${LOCALBASE}/share/zsh/site-functions
87
	${INSTALL_DATA} ${INSTALL_WRKSRC}/etc/completion.zsh \
88
			${STAGEDIR}${LOCALBASE}/share/zsh/site-functions/_crystal
89
90
.include <bsd.port.mk>
(-)w/lang/crystal/distinfo (+5 lines)
Added Link Here
1
TIMESTAMP = 1514504626
2
SHA256 (crystal/crystal-0.24.0-freebsd12.0) = 88bca1a688290da9f0bb97bb2d4a8d0b10a1b2fc545c692ded44b82eb9c5ccf8
3
SIZE (crystal/crystal-0.24.0-freebsd12.0) = 44264868
4
SHA256 (crystal/crystal-lang-crystal-0.24.1_GH0.tar.gz) = 4999a4d2a9ffc7bfbea8351b97057c3a135c2091cbd518e5c22ea7f5392b67d8
5
SIZE (crystal/crystal-lang-crystal-0.24.1_GH0.tar.gz) = 1744210
(-)w/lang/crystal/files/patch-src_lib__c_x86__64-portbld-freebsd_c_dirent.cr (+26 lines)
Added Link Here
1
--- src/lib_c/x86_64-portbld-freebsd/c/dirent.cr.orig	2017-10-27 14:50:57 UTC
2
+++ src/lib_c/x86_64-portbld-freebsd/c/dirent.cr
3
@@ -4,10 +4,21 @@ lib LibC
4
   type DIR = Void
5
 
6
   struct Dirent
7
-    d_fileno : UInt
8
+    {% if flag?(:"freebsd12.0") %}
9
+      d_fileno : ULong
10
+      d_off : ULong
11
+    {% else %}
12
+      d_fileno : UInt
13
+    {% end %}
14
     d_reclen : UShort
15
     d_type : UChar
16
-    d_namlen : UChar
17
+    {% if flag?(:"freebsd12.0") %}
18
+      d_pad0 : UChar
19
+      d_namlen : UShort
20
+      d_pad1 : UShort
21
+    {% else %}
22
+      d_namlen : UChar
23
+    {% end %}
24
     d_name : StaticArray(Char, 256)
25
   end
26
 
(-)w/lang/crystal/files/patch-src_lib__c_x86__64-portbld-freebsd_c_sys_stat.cr (+50 lines)
Added Link Here
1
--- src/lib_c/x86_64-portbld-freebsd/c/sys/stat.cr.orig	2017-10-27 14:50:57 UTC
2
+++ src/lib_c/x86_64-portbld-freebsd/c/sys/stat.cr
3
@@ -31,23 +31,40 @@ lib LibC
4
   struct Stat
5
     st_dev : DevT
6
     st_ino : InoT
7
-    st_mode : ModeT
8
-    st_nlink : NlinkT
9
+    {% if flag?(:"freebsd12.0") %}
10
+      st_nlink : NlinkT
11
+      st_mode : ModeT
12
+      st_pad0 : UShort
13
+    {% else %}
14
+      st_mode : ModeT
15
+      st_nlink : NlinkT
16
+    {% end %}
17
     st_uid : UidT
18
     st_gid : GidT
19
+    {% if flag?(:"freebsd12.0") %}
20
+      st_pad1 : UInt
21
+    {% end %}
22
     st_rdev : DevT
23
     st_atim : Timespec
24
     st_mtim : Timespec
25
     st_ctim : Timespec
26
+    {% if flag?(:"freebsd12.0") %}
27
+      st_birthtim : Timespec
28
+    {% end %}
29
     st_size : OffT
30
     st_blocks : BlkcntT
31
     st_blksize : BlksizeT
32
     st_flags : FflagsT
33
-    st_gen : UInt
34
-    st_lspare : Int
35
-    st_birthtim : Timespec
36
-    __reserved_17 : UInt
37
-    __reserved_18 : UInt
38
+    {% if flag?("freebsd12.0") %}
39
+      st_gen : ULong
40
+      st_spare : StaticArray(ULong, 10)
41
+    {% else %}
42
+      st_gen : UInt
43
+      st_lspare : Int
44
+      st_birthtim : Timespec
45
+      __reserved_17 : UInt
46
+      __reserved_18 : UInt
47
+    {% end %}
48
   end
49
 
50
   fun chmod(x0 : Char*, x1 : ModeT) : Int
(-)w/lang/crystal/files/patch-src_lib__c_x86__64-portbld-freebsd_c_sys_types.cr (+22 lines)
Added Link Here
1
--- src/lib_c/x86_64-portbld-freebsd/c/sys/types.cr.orig	2017-10-27 14:50:57 UTC
2
+++ src/lib_c/x86_64-portbld-freebsd/c/sys/types.cr
3
@@ -9,9 +9,17 @@ lib LibC
4
   alias DevT = UInt
5
   alias GidT = UInt
6
   alias IdT = Long
7
-  alias InoT = UInt
8
+  {% if flag?(:"freebsd12.0") %}
9
+    alias InoT = ULong
10
+  {% else %}
11
+    alias InoT = UInt
12
+  {% end %}
13
   alias ModeT = UShort
14
-  alias NlinkT = UShort
15
+  {% if flag?(:"freebsd12.0") %}
16
+    alias NlinkT = ULong
17
+  {% else %}
18
+    alias NlinkT = UShort
19
+  {% end %}
20
   alias OffT = Long
21
   alias PidT = Int
22
   type PthreadAttrT = Void*
(-)w/lang/crystal/pkg-descr (+9 lines)
Added Link Here
1
Crystal is a programming language with the following goals:
2
3
- Have a syntax similar to Ruby (but compatibility with it is not a goal)
4
- Be statically type-checked, but without having to specify the type of variables or method arguments.
5
- Be able to call C code by writing bindings to it in Crystal.
6
- Have compile-time evaluation and generation of code, to avoid boilerplate code.
7
- Compile to efficient native code.
8
9
WWW: https://crystal-lang.org
(-)w/lang/crystal/pkg-message (+5 lines)
Added Link Here
1
When building Crystal code with the --release flag, add the --no-debug flag to
2
avoid LLVM assertion errors.
3
4
Install textproc/libyaml for YAML support, math/gmp for BigInt support,
5
textproc/libxml2 for XML support.
(-)w/lang/crystal/pkg-plist (+826 lines)
Added Link Here
1
bin/crystal
2
%%BASH%%etc/bash_completion.d/_crystal.bash
3
lib/crystal/adler32/adler32.cr
4
lib/crystal/array.cr
5
lib/crystal/atomic.cr
6
lib/crystal/base64.cr
7
lib/crystal/benchmark.cr
8
lib/crystal/benchmark/bm.cr
9
lib/crystal/benchmark/ips.cr
10
lib/crystal/big.cr
11
lib/crystal/big/big_decimal.cr
12
lib/crystal/big/big_float.cr
13
lib/crystal/big/big_int.cr
14
lib/crystal/big/big_rational.cr
15
lib/crystal/big/json.cr
16
lib/crystal/big/lib_gmp.cr
17
lib/crystal/big/yaml.cr
18
lib/crystal/bit_array.cr
19
lib/crystal/bool.cr
20
lib/crystal/box.cr
21
lib/crystal/callstack.cr
22
lib/crystal/callstack/lib_unwind.cr
23
lib/crystal/char.cr
24
lib/crystal/char/reader.cr
25
lib/crystal/class.cr
26
lib/crystal/colorize.cr
27
lib/crystal/comparable.cr
28
lib/crystal/compiler/crystal.cr
29
lib/crystal/compiler/crystal/codegen/asm.cr
30
lib/crystal/compiler/crystal/codegen/ast.cr
31
lib/crystal/compiler/crystal/codegen/cache_dir.cr
32
lib/crystal/compiler/crystal/codegen/call.cr
33
lib/crystal/compiler/crystal/codegen/cast.cr
34
lib/crystal/compiler/crystal/codegen/class_var.cr
35
lib/crystal/compiler/crystal/codegen/codegen.cr
36
lib/crystal/compiler/crystal/codegen/cond.cr
37
lib/crystal/compiler/crystal/codegen/const.cr
38
lib/crystal/compiler/crystal/codegen/context.cr
39
lib/crystal/compiler/crystal/codegen/crystal_llvm_builder.cr
40
lib/crystal/compiler/crystal/codegen/debug.cr
41
lib/crystal/compiler/crystal/codegen/exception.cr
42
lib/crystal/compiler/crystal/codegen/fun.cr
43
lib/crystal/compiler/crystal/codegen/link.cr
44
lib/crystal/compiler/crystal/codegen/llvm_builder_helper.cr
45
lib/crystal/compiler/crystal/codegen/llvm_id.cr
46
lib/crystal/compiler/crystal/codegen/llvm_typer.cr
47
lib/crystal/compiler/crystal/codegen/match.cr
48
lib/crystal/compiler/crystal/codegen/phi.cr
49
lib/crystal/compiler/crystal/codegen/primitives.cr
50
lib/crystal/compiler/crystal/codegen/target_machine.cr
51
lib/crystal/compiler/crystal/codegen/type_id.cr
52
lib/crystal/compiler/crystal/codegen/types.cr
53
lib/crystal/compiler/crystal/command.cr
54
lib/crystal/compiler/crystal/command/cursor.cr
55
lib/crystal/compiler/crystal/command/deps.cr
56
lib/crystal/compiler/crystal/command/docs.cr
57
lib/crystal/compiler/crystal/command/env.cr
58
lib/crystal/compiler/crystal/command/eval.cr
59
lib/crystal/compiler/crystal/command/format.cr
60
lib/crystal/compiler/crystal/command/playground.cr
61
lib/crystal/compiler/crystal/command/spec.cr
62
lib/crystal/compiler/crystal/compiler.cr
63
lib/crystal/compiler/crystal/config.cr
64
lib/crystal/compiler/crystal/crystal_path.cr
65
lib/crystal/compiler/crystal/exception.cr
66
lib/crystal/compiler/crystal/formatter.cr
67
lib/crystal/compiler/crystal/macros.cr
68
lib/crystal/compiler/crystal/macros/interpreter.cr
69
lib/crystal/compiler/crystal/macros/macros.cr
70
lib/crystal/compiler/crystal/macros/methods.cr
71
lib/crystal/compiler/crystal/program.cr
72
lib/crystal/compiler/crystal/progress_tracker.cr
73
lib/crystal/compiler/crystal/semantic.cr
74
lib/crystal/compiler/crystal/semantic/abstract_def_checker.cr
75
lib/crystal/compiler/crystal/semantic/ast.cr
76
lib/crystal/compiler/crystal/semantic/bindings.cr
77
lib/crystal/compiler/crystal/semantic/call.cr
78
lib/crystal/compiler/crystal/semantic/call_error.cr
79
lib/crystal/compiler/crystal/semantic/class_vars_initializer_visitor.cr
80
lib/crystal/compiler/crystal/semantic/cleanup_transformer.cr
81
lib/crystal/compiler/crystal/semantic/conversions.cr
82
lib/crystal/compiler/crystal/semantic/cover.cr
83
lib/crystal/compiler/crystal/semantic/default_arguments.cr
84
lib/crystal/compiler/crystal/semantic/exception.cr
85
lib/crystal/compiler/crystal/semantic/filters.cr
86
lib/crystal/compiler/crystal/semantic/fix_missing_types.cr
87
lib/crystal/compiler/crystal/semantic/flags.cr
88
lib/crystal/compiler/crystal/semantic/hooks.cr
89
lib/crystal/compiler/crystal/semantic/instance_vars_initializer_visitor.cr
90
lib/crystal/compiler/crystal/semantic/lib.cr
91
lib/crystal/compiler/crystal/semantic/literal_expander.cr
92
lib/crystal/compiler/crystal/semantic/main_visitor.cr
93
lib/crystal/compiler/crystal/semantic/match.cr
94
lib/crystal/compiler/crystal/semantic/math_interpreter.cr
95
lib/crystal/compiler/crystal/semantic/method_lookup.cr
96
lib/crystal/compiler/crystal/semantic/method_missing.cr
97
lib/crystal/compiler/crystal/semantic/new.cr
98
lib/crystal/compiler/crystal/semantic/normalizer.cr
99
lib/crystal/compiler/crystal/semantic/path_lookup.cr
100
lib/crystal/compiler/crystal/semantic/recursive_struct_checker.cr
101
lib/crystal/compiler/crystal/semantic/restrictions.cr
102
lib/crystal/compiler/crystal/semantic/semantic_visitor.cr
103
lib/crystal/compiler/crystal/semantic/suggestions.cr
104
lib/crystal/compiler/crystal/semantic/to_s.cr
105
lib/crystal/compiler/crystal/semantic/top_level_visitor.cr
106
lib/crystal/compiler/crystal/semantic/transformer.cr
107
lib/crystal/compiler/crystal/semantic/type_declaration_processor.cr
108
lib/crystal/compiler/crystal/semantic/type_declaration_visitor.cr
109
lib/crystal/compiler/crystal/semantic/type_guess_visitor.cr
110
lib/crystal/compiler/crystal/semantic/type_lookup.cr
111
lib/crystal/compiler/crystal/semantic/type_merge.cr
112
lib/crystal/compiler/crystal/syntax.cr
113
lib/crystal/compiler/crystal/syntax/ast.cr
114
lib/crystal/compiler/crystal/syntax/exception.cr
115
lib/crystal/compiler/crystal/syntax/lexer.cr
116
lib/crystal/compiler/crystal/syntax/location.cr
117
lib/crystal/compiler/crystal/syntax/parser.cr
118
lib/crystal/compiler/crystal/syntax/to_s.cr
119
lib/crystal/compiler/crystal/syntax/token.cr
120
lib/crystal/compiler/crystal/syntax/transformer.cr
121
lib/crystal/compiler/crystal/syntax/virtual_file.cr
122
lib/crystal/compiler/crystal/syntax/visitor.cr
123
lib/crystal/compiler/crystal/tools/context.cr
124
lib/crystal/compiler/crystal/tools/doc/constant.cr
125
lib/crystal/compiler/crystal/tools/doc/generator.cr
126
lib/crystal/compiler/crystal/tools/doc/highlighter.cr
127
lib/crystal/compiler/crystal/tools/doc/html/css/style.css
128
lib/crystal/compiler/crystal/tools/doc/html/js/doc.js
129
lib/crystal/compiler/crystal/tools/doc/html/list_items.html
130
lib/crystal/compiler/crystal/tools/doc/html/main.html
131
lib/crystal/compiler/crystal/tools/doc/html/method_detail.html
132
lib/crystal/compiler/crystal/tools/doc/html/method_summary.html
133
lib/crystal/compiler/crystal/tools/doc/html/methods_inherited.html
134
lib/crystal/compiler/crystal/tools/doc/html/other_types.html
135
lib/crystal/compiler/crystal/tools/doc/html/type.html
136
lib/crystal/compiler/crystal/tools/doc/item.cr
137
lib/crystal/compiler/crystal/tools/doc/macro.cr
138
lib/crystal/compiler/crystal/tools/doc/main.cr
139
lib/crystal/compiler/crystal/tools/doc/markdown_doc_renderer.cr
140
lib/crystal/compiler/crystal/tools/doc/method.cr
141
lib/crystal/compiler/crystal/tools/doc/templates.cr
142
lib/crystal/compiler/crystal/tools/doc/to_json.cr
143
lib/crystal/compiler/crystal/tools/doc/type.cr
144
lib/crystal/compiler/crystal/tools/expand.cr
145
lib/crystal/compiler/crystal/tools/formatter.cr
146
lib/crystal/compiler/crystal/tools/implementations.cr
147
lib/crystal/compiler/crystal/tools/init.cr
148
lib/crystal/compiler/crystal/tools/init/template/editorconfig.ecr
149
lib/crystal/compiler/crystal/tools/init/template/example.cr.ecr
150
lib/crystal/compiler/crystal/tools/init/template/example_spec.cr.ecr
151
lib/crystal/compiler/crystal/tools/init/template/gitignore.ecr
152
lib/crystal/compiler/crystal/tools/init/template/license.ecr
153
lib/crystal/compiler/crystal/tools/init/template/readme.md.ecr
154
lib/crystal/compiler/crystal/tools/init/template/shard.yml.ecr
155
lib/crystal/compiler/crystal/tools/init/template/spec_helper.cr.ecr
156
lib/crystal/compiler/crystal/tools/init/template/travis.yml.ecr
157
lib/crystal/compiler/crystal/tools/init/template/version.cr.ecr
158
lib/crystal/compiler/crystal/tools/playground/agent.cr
159
lib/crystal/compiler/crystal/tools/playground/agent_instrumentor_transformer.cr
160
lib/crystal/compiler/crystal/tools/playground/public/application.css
161
lib/crystal/compiler/crystal/tools/playground/public/application.js
162
lib/crystal/compiler/crystal/tools/playground/public/favicon.ico
163
lib/crystal/compiler/crystal/tools/playground/public/icon.png
164
lib/crystal/compiler/crystal/tools/playground/public/session.js
165
lib/crystal/compiler/crystal/tools/playground/public/settings.js
166
lib/crystal/compiler/crystal/tools/playground/public/vendor/ansi_up-1.3.0/ansi_up.js
167
lib/crystal/compiler/crystal/tools/playground/public/vendor/ansi_up-1.3.0/theme.css
168
lib/crystal/compiler/crystal/tools/playground/public/vendor/codemirror-5.22.0/addon/comment/comment.js
169
lib/crystal/compiler/crystal/tools/playground/public/vendor/codemirror-5.22.0/lib/codemirror.css
170
lib/crystal/compiler/crystal/tools/playground/public/vendor/codemirror-5.22.0/lib/codemirror.js
171
lib/crystal/compiler/crystal/tools/playground/public/vendor/codemirror-5.22.0/mode/crystal/crystal.js
172
lib/crystal/compiler/crystal/tools/playground/public/vendor/codemirror-5.22.0/theme/neat.css
173
lib/crystal/compiler/crystal/tools/playground/public/vendor/jquery-2.2.1.min.js
174
lib/crystal/compiler/crystal/tools/playground/public/vendor/materialize-v0.97.5/css/materialize.min.css
175
lib/crystal/compiler/crystal/tools/playground/public/vendor/materialize-v0.97.5/js/materialize.min.js
176
lib/crystal/compiler/crystal/tools/playground/public/vendor/octicons-3.5.0/octicons.css
177
lib/crystal/compiler/crystal/tools/playground/public/vendor/octicons-3.5.0/octicons.eot
178
lib/crystal/compiler/crystal/tools/playground/public/vendor/octicons-3.5.0/octicons.svg
179
lib/crystal/compiler/crystal/tools/playground/public/vendor/octicons-3.5.0/octicons.ttf
180
lib/crystal/compiler/crystal/tools/playground/public/vendor/octicons-3.5.0/octicons.woff
181
lib/crystal/compiler/crystal/tools/playground/server.cr
182
lib/crystal/compiler/crystal/tools/playground/views/_about.html
183
lib/crystal/compiler/crystal/tools/playground/views/_index.html
184
lib/crystal/compiler/crystal/tools/playground/views/_settings.html
185
lib/crystal/compiler/crystal/tools/playground/views/_workbook.html.ecr
186
lib/crystal/compiler/crystal/tools/playground/views/layout.html.ecr
187
lib/crystal/compiler/crystal/tools/print_hierarchy.cr
188
lib/crystal/compiler/crystal/tools/print_types_visitor.cr
189
lib/crystal/compiler/crystal/tools/table_print.cr
190
lib/crystal/compiler/crystal/tools/typed_def_processor.cr
191
lib/crystal/compiler/crystal/types.cr
192
lib/crystal/compiler/crystal/util.cr
193
lib/crystal/complex.cr
194
lib/crystal/concurrent.cr
195
lib/crystal/concurrent/channel.cr
196
lib/crystal/concurrent/error.cr
197
lib/crystal/concurrent/future.cr
198
lib/crystal/concurrent/scheduler.cr
199
lib/crystal/crc32/crc32.cr
200
lib/crystal/crypto/bcrypt.cr
201
lib/crystal/crypto/bcrypt/base64.cr
202
lib/crystal/crypto/bcrypt/blowfish.cr
203
lib/crystal/crypto/bcrypt/password.cr
204
lib/crystal/crypto/blowfish.cr
205
lib/crystal/crypto/subtle.cr
206
lib/crystal/crystal/hasher.cr
207
lib/crystal/crystal/main.cr
208
lib/crystal/crystal/system.cr
209
lib/crystal/crystal/system/random.cr
210
lib/crystal/crystal/system/time.cr
211
lib/crystal/crystal/system/unix/arc4random.cr
212
lib/crystal/crystal/system/unix/getrandom.cr
213
lib/crystal/crystal/system/unix/hostname.cr
214
lib/crystal/crystal/system/unix/sysconf_cpucount.cr
215
lib/crystal/crystal/system/unix/sysctl_cpucount.cr
216
lib/crystal/crystal/system/unix/time.cr
217
lib/crystal/crystal/system/unix/urandom.cr
218
lib/crystal/csv.cr
219
lib/crystal/csv/builder.cr
220
lib/crystal/csv/error.cr
221
lib/crystal/csv/lexer.cr
222
lib/crystal/csv/lexer/io_based.cr
223
lib/crystal/csv/lexer/string_based.cr
224
lib/crystal/csv/parser.cr
225
lib/crystal/csv/token.cr
226
lib/crystal/debug/dwarf.cr
227
lib/crystal/debug/dwarf/abbrev.cr
228
lib/crystal/debug/dwarf/info.cr
229
lib/crystal/debug/dwarf/line_numbers.cr
230
lib/crystal/debug/dwarf/strings.cr
231
lib/crystal/debug/elf.cr
232
lib/crystal/debug/mach_o.cr
233
lib/crystal/deque.cr
234
lib/crystal/digest.cr
235
lib/crystal/digest/base.cr
236
lib/crystal/digest/md5.cr
237
lib/crystal/digest/sha1.cr
238
lib/crystal/dir.cr
239
lib/crystal/dir/glob.cr
240
lib/crystal/dl.cr
241
lib/crystal/docs_main.cr
242
lib/crystal/ecr.cr
243
lib/crystal/ecr/lexer.cr
244
lib/crystal/ecr/macros.cr
245
lib/crystal/ecr/process.cr
246
lib/crystal/ecr/processor.cr
247
lib/crystal/empty.cr
248
lib/crystal/enum.cr
249
lib/crystal/enumerable.cr
250
lib/crystal/env.cr
251
lib/crystal/errno.cr
252
lib/crystal/event.cr
253
lib/crystal/event/lib_event2.cr
254
lib/crystal/event/signal_child_handler.cr
255
lib/crystal/event/signal_handler.cr
256
lib/crystal/exception.cr
257
lib/crystal/ext.cr
258
lib/crystal/ext/libcrystal.a
259
lib/crystal/ext/sigfault.c
260
lib/crystal/ext/sigfault.o
261
lib/crystal/fiber.cr
262
lib/crystal/file.cr
263
lib/crystal/file/flock.cr
264
lib/crystal/file/preader.cr
265
lib/crystal/file/stat.cr
266
lib/crystal/file_utils.cr
267
lib/crystal/flate/flate.cr
268
lib/crystal/flate/reader.cr
269
lib/crystal/flate/writer.cr
270
lib/crystal/float.cr
271
lib/crystal/float/printer.cr
272
lib/crystal/float/printer/cached_powers.cr
273
lib/crystal/float/printer/diy_fp.cr
274
lib/crystal/float/printer/grisu3.cr
275
lib/crystal/float/printer/ieee.cr
276
lib/crystal/gc.cr
277
lib/crystal/gc/boehm.cr
278
lib/crystal/gc/none.cr
279
lib/crystal/gzip/gzip.cr
280
lib/crystal/gzip/header.cr
281
lib/crystal/gzip/reader.cr
282
lib/crystal/gzip/writer.cr
283
lib/crystal/hash.cr
284
lib/crystal/html.cr
285
lib/crystal/html/entities.cr
286
lib/crystal/http.cr
287
lib/crystal/http/client.cr
288
lib/crystal/http/client/response.cr
289
lib/crystal/http/common.cr
290
lib/crystal/http/content.cr
291
lib/crystal/http/cookie.cr
292
lib/crystal/http/formdata.cr
293
lib/crystal/http/formdata/builder.cr
294
lib/crystal/http/formdata/parser.cr
295
lib/crystal/http/formdata/part.cr
296
lib/crystal/http/headers.cr
297
lib/crystal/http/multipart.cr
298
lib/crystal/http/multipart/builder.cr
299
lib/crystal/http/multipart/parser.cr
300
lib/crystal/http/params.cr
301
lib/crystal/http/request.cr
302
lib/crystal/http/server.cr
303
lib/crystal/http/server/context.cr
304
lib/crystal/http/server/handler.cr
305
lib/crystal/http/server/handlers/compress_handler.cr
306
lib/crystal/http/server/handlers/error_handler.cr
307
lib/crystal/http/server/handlers/log_handler.cr
308
lib/crystal/http/server/handlers/static_file_handler.cr
309
lib/crystal/http/server/handlers/static_file_handler.html
310
lib/crystal/http/server/handlers/websocket_handler.cr
311
lib/crystal/http/server/request_processor.cr
312
lib/crystal/http/server/response.cr
313
lib/crystal/http/web_socket.cr
314
lib/crystal/http/web_socket/protocol.cr
315
lib/crystal/iconv.cr
316
lib/crystal/indexable.cr
317
lib/crystal/ini.cr
318
lib/crystal/int.cr
319
lib/crystal/intrinsics.cr
320
lib/crystal/io.cr
321
lib/crystal/io/argf.cr
322
lib/crystal/io/buffered.cr
323
lib/crystal/io/byte_format.cr
324
lib/crystal/io/console.cr
325
lib/crystal/io/delimited.cr
326
lib/crystal/io/encoding.cr
327
lib/crystal/io/error.cr
328
lib/crystal/io/file_descriptor.cr
329
lib/crystal/io/hexdump.cr
330
lib/crystal/io/memory.cr
331
lib/crystal/io/multi_writer.cr
332
lib/crystal/io/sized.cr
333
lib/crystal/io/syscall.cr
334
lib/crystal/iterable.cr
335
lib/crystal/iterator.cr
336
lib/crystal/json.cr
337
lib/crystal/json/any.cr
338
lib/crystal/json/builder.cr
339
lib/crystal/json/from_json.cr
340
lib/crystal/json/lexer.cr
341
lib/crystal/json/lexer/io_based.cr
342
lib/crystal/json/lexer/string_based.cr
343
lib/crystal/json/mapping.cr
344
lib/crystal/json/parser.cr
345
lib/crystal/json/pull_parser.cr
346
lib/crystal/json/to_json.cr
347
lib/crystal/json/token.cr
348
lib/crystal/kernel.cr
349
lib/crystal/levenshtein.cr
350
lib/crystal/lib_c.cr
351
lib/crystal/lib_c/aarch64-linux-gnu/c/arpa/inet.cr
352
lib/crystal/lib_c/aarch64-linux-gnu/c/dirent.cr
353
lib/crystal/lib_c/aarch64-linux-gnu/c/dlfcn.cr
354
lib/crystal/lib_c/aarch64-linux-gnu/c/errno.cr
355
lib/crystal/lib_c/aarch64-linux-gnu/c/fcntl.cr
356
lib/crystal/lib_c/aarch64-linux-gnu/c/iconv.cr
357
lib/crystal/lib_c/aarch64-linux-gnu/c/netdb.cr
358
lib/crystal/lib_c/aarch64-linux-gnu/c/netinet/in.cr
359
lib/crystal/lib_c/aarch64-linux-gnu/c/netinet/tcp.cr
360
lib/crystal/lib_c/aarch64-linux-gnu/c/pthread.cr
361
lib/crystal/lib_c/aarch64-linux-gnu/c/signal.cr
362
lib/crystal/lib_c/aarch64-linux-gnu/c/stddef.cr
363
lib/crystal/lib_c/aarch64-linux-gnu/c/stdint.cr
364
lib/crystal/lib_c/aarch64-linux-gnu/c/stdio.cr
365
lib/crystal/lib_c/aarch64-linux-gnu/c/stdlib.cr
366
lib/crystal/lib_c/aarch64-linux-gnu/c/string.cr
367
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/mman.cr
368
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/select.cr
369
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/socket.cr
370
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/stat.cr
371
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/syscall.cr
372
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/time.cr
373
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/times.cr
374
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/types.cr
375
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/un.cr
376
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/wait.cr
377
lib/crystal/lib_c/aarch64-linux-gnu/c/termios.cr
378
lib/crystal/lib_c/aarch64-linux-gnu/c/time.cr
379
lib/crystal/lib_c/aarch64-linux-gnu/c/unistd.cr
380
lib/crystal/lib_c/amd64-unknown-openbsd/c/arpa/inet.cr
381
lib/crystal/lib_c/amd64-unknown-openbsd/c/dirent.cr
382
lib/crystal/lib_c/amd64-unknown-openbsd/c/dlfcn.cr
383
lib/crystal/lib_c/amd64-unknown-openbsd/c/errno.cr
384
lib/crystal/lib_c/amd64-unknown-openbsd/c/fcntl.cr
385
lib/crystal/lib_c/amd64-unknown-openbsd/c/iconv.cr
386
lib/crystal/lib_c/amd64-unknown-openbsd/c/netdb.cr
387
lib/crystal/lib_c/amd64-unknown-openbsd/c/netinet/in.cr
388
lib/crystal/lib_c/amd64-unknown-openbsd/c/netinet/tcp.cr
389
lib/crystal/lib_c/amd64-unknown-openbsd/c/pthread.cr
390
lib/crystal/lib_c/amd64-unknown-openbsd/c/signal.cr
391
lib/crystal/lib_c/amd64-unknown-openbsd/c/stddef.cr
392
lib/crystal/lib_c/amd64-unknown-openbsd/c/stdint.cr
393
lib/crystal/lib_c/amd64-unknown-openbsd/c/stdio.cr
394
lib/crystal/lib_c/amd64-unknown-openbsd/c/stdlib.cr
395
lib/crystal/lib_c/amd64-unknown-openbsd/c/string.cr
396
lib/crystal/lib_c/amd64-unknown-openbsd/c/sys/mman.cr
397
lib/crystal/lib_c/amd64-unknown-openbsd/c/sys/select.cr
398
lib/crystal/lib_c/amd64-unknown-openbsd/c/sys/socket.cr
399
lib/crystal/lib_c/amd64-unknown-openbsd/c/sys/stat.cr
400
lib/crystal/lib_c/amd64-unknown-openbsd/c/sys/time.cr
401
lib/crystal/lib_c/amd64-unknown-openbsd/c/sys/times.cr
402
lib/crystal/lib_c/amd64-unknown-openbsd/c/sys/types.cr
403
lib/crystal/lib_c/amd64-unknown-openbsd/c/sys/un.cr
404
lib/crystal/lib_c/amd64-unknown-openbsd/c/sys/wait.cr
405
lib/crystal/lib_c/amd64-unknown-openbsd/c/sysctl.cr
406
lib/crystal/lib_c/amd64-unknown-openbsd/c/termios.cr
407
lib/crystal/lib_c/amd64-unknown-openbsd/c/time.cr
408
lib/crystal/lib_c/amd64-unknown-openbsd/c/unistd.cr
409
lib/crystal/lib_c/arm-linux-gnueabihf/c/arpa/inet.cr
410
lib/crystal/lib_c/arm-linux-gnueabihf/c/dirent.cr
411
lib/crystal/lib_c/arm-linux-gnueabihf/c/dlfcn.cr
412
lib/crystal/lib_c/arm-linux-gnueabihf/c/errno.cr
413
lib/crystal/lib_c/arm-linux-gnueabihf/c/fcntl.cr
414
lib/crystal/lib_c/arm-linux-gnueabihf/c/iconv.cr
415
lib/crystal/lib_c/arm-linux-gnueabihf/c/netdb.cr
416
lib/crystal/lib_c/arm-linux-gnueabihf/c/netinet/in.cr
417
lib/crystal/lib_c/arm-linux-gnueabihf/c/netinet/tcp.cr
418
lib/crystal/lib_c/arm-linux-gnueabihf/c/pthread.cr
419
lib/crystal/lib_c/arm-linux-gnueabihf/c/signal.cr
420
lib/crystal/lib_c/arm-linux-gnueabihf/c/stddef.cr
421
lib/crystal/lib_c/arm-linux-gnueabihf/c/stdint.cr
422
lib/crystal/lib_c/arm-linux-gnueabihf/c/stdio.cr
423
lib/crystal/lib_c/arm-linux-gnueabihf/c/stdlib.cr
424
lib/crystal/lib_c/arm-linux-gnueabihf/c/string.cr
425
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/mman.cr
426
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/select.cr
427
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/socket.cr
428
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/stat.cr
429
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/syscall.cr
430
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/time.cr
431
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/times.cr
432
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/types.cr
433
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/un.cr
434
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/wait.cr
435
lib/crystal/lib_c/arm-linux-gnueabihf/c/termios.cr
436
lib/crystal/lib_c/arm-linux-gnueabihf/c/time.cr
437
lib/crystal/lib_c/arm-linux-gnueabihf/c/unistd.cr
438
lib/crystal/lib_c/i686-linux-gnu/c/arpa/inet.cr
439
lib/crystal/lib_c/i686-linux-gnu/c/dirent.cr
440
lib/crystal/lib_c/i686-linux-gnu/c/dlfcn.cr
441
lib/crystal/lib_c/i686-linux-gnu/c/errno.cr
442
lib/crystal/lib_c/i686-linux-gnu/c/fcntl.cr
443
lib/crystal/lib_c/i686-linux-gnu/c/iconv.cr
444
lib/crystal/lib_c/i686-linux-gnu/c/netdb.cr
445
lib/crystal/lib_c/i686-linux-gnu/c/netinet/in.cr
446
lib/crystal/lib_c/i686-linux-gnu/c/netinet/tcp.cr
447
lib/crystal/lib_c/i686-linux-gnu/c/pthread.cr
448
lib/crystal/lib_c/i686-linux-gnu/c/signal.cr
449
lib/crystal/lib_c/i686-linux-gnu/c/stddef.cr
450
lib/crystal/lib_c/i686-linux-gnu/c/stdint.cr
451
lib/crystal/lib_c/i686-linux-gnu/c/stdio.cr
452
lib/crystal/lib_c/i686-linux-gnu/c/stdlib.cr
453
lib/crystal/lib_c/i686-linux-gnu/c/string.cr
454
lib/crystal/lib_c/i686-linux-gnu/c/sys/mman.cr
455
lib/crystal/lib_c/i686-linux-gnu/c/sys/select.cr
456
lib/crystal/lib_c/i686-linux-gnu/c/sys/socket.cr
457
lib/crystal/lib_c/i686-linux-gnu/c/sys/stat.cr
458
lib/crystal/lib_c/i686-linux-gnu/c/sys/syscall.cr
459
lib/crystal/lib_c/i686-linux-gnu/c/sys/time.cr
460
lib/crystal/lib_c/i686-linux-gnu/c/sys/times.cr
461
lib/crystal/lib_c/i686-linux-gnu/c/sys/types.cr
462
lib/crystal/lib_c/i686-linux-gnu/c/sys/un.cr
463
lib/crystal/lib_c/i686-linux-gnu/c/sys/wait.cr
464
lib/crystal/lib_c/i686-linux-gnu/c/termios.cr
465
lib/crystal/lib_c/i686-linux-gnu/c/time.cr
466
lib/crystal/lib_c/i686-linux-gnu/c/unistd.cr
467
lib/crystal/lib_c/i686-linux-musl/c/arpa/inet.cr
468
lib/crystal/lib_c/i686-linux-musl/c/dirent.cr
469
lib/crystal/lib_c/i686-linux-musl/c/dlfcn.cr
470
lib/crystal/lib_c/i686-linux-musl/c/errno.cr
471
lib/crystal/lib_c/i686-linux-musl/c/fcntl.cr
472
lib/crystal/lib_c/i686-linux-musl/c/iconv.cr
473
lib/crystal/lib_c/i686-linux-musl/c/netdb.cr
474
lib/crystal/lib_c/i686-linux-musl/c/netinet/in.cr
475
lib/crystal/lib_c/i686-linux-musl/c/netinet/tcp.cr
476
lib/crystal/lib_c/i686-linux-musl/c/pthread.cr
477
lib/crystal/lib_c/i686-linux-musl/c/signal.cr
478
lib/crystal/lib_c/i686-linux-musl/c/stddef.cr
479
lib/crystal/lib_c/i686-linux-musl/c/stdint.cr
480
lib/crystal/lib_c/i686-linux-musl/c/stdio.cr
481
lib/crystal/lib_c/i686-linux-musl/c/stdlib.cr
482
lib/crystal/lib_c/i686-linux-musl/c/string.cr
483
lib/crystal/lib_c/i686-linux-musl/c/sys/mman.cr
484
lib/crystal/lib_c/i686-linux-musl/c/sys/select.cr
485
lib/crystal/lib_c/i686-linux-musl/c/sys/socket.cr
486
lib/crystal/lib_c/i686-linux-musl/c/sys/stat.cr
487
lib/crystal/lib_c/i686-linux-musl/c/sys/syscall.cr
488
lib/crystal/lib_c/i686-linux-musl/c/sys/time.cr
489
lib/crystal/lib_c/i686-linux-musl/c/sys/times.cr
490
lib/crystal/lib_c/i686-linux-musl/c/sys/types.cr
491
lib/crystal/lib_c/i686-linux-musl/c/sys/un.cr
492
lib/crystal/lib_c/i686-linux-musl/c/sys/wait.cr
493
lib/crystal/lib_c/i686-linux-musl/c/termios.cr
494
lib/crystal/lib_c/i686-linux-musl/c/time.cr
495
lib/crystal/lib_c/i686-linux-musl/c/unistd.cr
496
lib/crystal/lib_c/x86_64-linux-gnu/c/arpa/inet.cr
497
lib/crystal/lib_c/x86_64-linux-gnu/c/dirent.cr
498
lib/crystal/lib_c/x86_64-linux-gnu/c/dlfcn.cr
499
lib/crystal/lib_c/x86_64-linux-gnu/c/errno.cr
500
lib/crystal/lib_c/x86_64-linux-gnu/c/fcntl.cr
501
lib/crystal/lib_c/x86_64-linux-gnu/c/iconv.cr
502
lib/crystal/lib_c/x86_64-linux-gnu/c/netdb.cr
503
lib/crystal/lib_c/x86_64-linux-gnu/c/netinet/in.cr
504
lib/crystal/lib_c/x86_64-linux-gnu/c/netinet/tcp.cr
505
lib/crystal/lib_c/x86_64-linux-gnu/c/pthread.cr
506
lib/crystal/lib_c/x86_64-linux-gnu/c/signal.cr
507
lib/crystal/lib_c/x86_64-linux-gnu/c/stddef.cr
508
lib/crystal/lib_c/x86_64-linux-gnu/c/stdint.cr
509
lib/crystal/lib_c/x86_64-linux-gnu/c/stdio.cr
510
lib/crystal/lib_c/x86_64-linux-gnu/c/stdlib.cr
511
lib/crystal/lib_c/x86_64-linux-gnu/c/string.cr
512
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/mman.cr
513
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/select.cr
514
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/socket.cr
515
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/stat.cr
516
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/syscall.cr
517
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/time.cr
518
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/times.cr
519
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/types.cr
520
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/un.cr
521
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/wait.cr
522
lib/crystal/lib_c/x86_64-linux-gnu/c/termios.cr
523
lib/crystal/lib_c/x86_64-linux-gnu/c/time.cr
524
lib/crystal/lib_c/x86_64-linux-gnu/c/unistd.cr
525
lib/crystal/lib_c/x86_64-linux-musl/c/arpa/inet.cr
526
lib/crystal/lib_c/x86_64-linux-musl/c/dirent.cr
527
lib/crystal/lib_c/x86_64-linux-musl/c/dlfcn.cr
528
lib/crystal/lib_c/x86_64-linux-musl/c/errno.cr
529
lib/crystal/lib_c/x86_64-linux-musl/c/fcntl.cr
530
lib/crystal/lib_c/x86_64-linux-musl/c/iconv.cr
531
lib/crystal/lib_c/x86_64-linux-musl/c/netdb.cr
532
lib/crystal/lib_c/x86_64-linux-musl/c/netinet/in.cr
533
lib/crystal/lib_c/x86_64-linux-musl/c/netinet/tcp.cr
534
lib/crystal/lib_c/x86_64-linux-musl/c/pthread.cr
535
lib/crystal/lib_c/x86_64-linux-musl/c/signal.cr
536
lib/crystal/lib_c/x86_64-linux-musl/c/stddef.cr
537
lib/crystal/lib_c/x86_64-linux-musl/c/stdint.cr
538
lib/crystal/lib_c/x86_64-linux-musl/c/stdio.cr
539
lib/crystal/lib_c/x86_64-linux-musl/c/stdlib.cr
540
lib/crystal/lib_c/x86_64-linux-musl/c/string.cr
541
lib/crystal/lib_c/x86_64-linux-musl/c/sys/mman.cr
542
lib/crystal/lib_c/x86_64-linux-musl/c/sys/select.cr
543
lib/crystal/lib_c/x86_64-linux-musl/c/sys/socket.cr
544
lib/crystal/lib_c/x86_64-linux-musl/c/sys/stat.cr
545
lib/crystal/lib_c/x86_64-linux-musl/c/sys/syscall.cr
546
lib/crystal/lib_c/x86_64-linux-musl/c/sys/time.cr
547
lib/crystal/lib_c/x86_64-linux-musl/c/sys/times.cr
548
lib/crystal/lib_c/x86_64-linux-musl/c/sys/types.cr
549
lib/crystal/lib_c/x86_64-linux-musl/c/sys/un.cr
550
lib/crystal/lib_c/x86_64-linux-musl/c/sys/wait.cr
551
lib/crystal/lib_c/x86_64-linux-musl/c/termios.cr
552
lib/crystal/lib_c/x86_64-linux-musl/c/time.cr
553
lib/crystal/lib_c/x86_64-linux-musl/c/unistd.cr
554
lib/crystal/lib_c/x86_64-macosx-darwin/c/arpa/inet.cr
555
lib/crystal/lib_c/x86_64-macosx-darwin/c/dirent.cr
556
lib/crystal/lib_c/x86_64-macosx-darwin/c/dlfcn.cr
557
lib/crystal/lib_c/x86_64-macosx-darwin/c/errno.cr
558
lib/crystal/lib_c/x86_64-macosx-darwin/c/fcntl.cr
559
lib/crystal/lib_c/x86_64-macosx-darwin/c/iconv.cr
560
lib/crystal/lib_c/x86_64-macosx-darwin/c/mach/mach_time.cr
561
lib/crystal/lib_c/x86_64-macosx-darwin/c/netdb.cr
562
lib/crystal/lib_c/x86_64-macosx-darwin/c/netinet/in.cr
563
lib/crystal/lib_c/x86_64-macosx-darwin/c/netinet/tcp.cr
564
lib/crystal/lib_c/x86_64-macosx-darwin/c/pthread.cr
565
lib/crystal/lib_c/x86_64-macosx-darwin/c/signal.cr
566
lib/crystal/lib_c/x86_64-macosx-darwin/c/stddef.cr
567
lib/crystal/lib_c/x86_64-macosx-darwin/c/stdint.cr
568
lib/crystal/lib_c/x86_64-macosx-darwin/c/stdio.cr
569
lib/crystal/lib_c/x86_64-macosx-darwin/c/stdlib.cr
570
lib/crystal/lib_c/x86_64-macosx-darwin/c/string.cr
571
lib/crystal/lib_c/x86_64-macosx-darwin/c/sys/mman.cr
572
lib/crystal/lib_c/x86_64-macosx-darwin/c/sys/select.cr
573
lib/crystal/lib_c/x86_64-macosx-darwin/c/sys/socket.cr
574
lib/crystal/lib_c/x86_64-macosx-darwin/c/sys/stat.cr
575
lib/crystal/lib_c/x86_64-macosx-darwin/c/sys/time.cr
576
lib/crystal/lib_c/x86_64-macosx-darwin/c/sys/times.cr
577
lib/crystal/lib_c/x86_64-macosx-darwin/c/sys/types.cr
578
lib/crystal/lib_c/x86_64-macosx-darwin/c/sys/un.cr
579
lib/crystal/lib_c/x86_64-macosx-darwin/c/sys/wait.cr
580
lib/crystal/lib_c/x86_64-macosx-darwin/c/termios.cr
581
lib/crystal/lib_c/x86_64-macosx-darwin/c/time.cr
582
lib/crystal/lib_c/x86_64-macosx-darwin/c/unistd.cr
583
lib/crystal/lib_c/x86_64-portbld-freebsd/c/arpa/inet.cr
584
lib/crystal/lib_c/x86_64-portbld-freebsd/c/dirent.cr
585
lib/crystal/lib_c/x86_64-portbld-freebsd/c/dirent.cr.orig
586
lib/crystal/lib_c/x86_64-portbld-freebsd/c/dlfcn.cr
587
lib/crystal/lib_c/x86_64-portbld-freebsd/c/errno.cr
588
lib/crystal/lib_c/x86_64-portbld-freebsd/c/fcntl.cr
589
lib/crystal/lib_c/x86_64-portbld-freebsd/c/iconv.cr
590
lib/crystal/lib_c/x86_64-portbld-freebsd/c/netdb.cr
591
lib/crystal/lib_c/x86_64-portbld-freebsd/c/netinet/in.cr
592
lib/crystal/lib_c/x86_64-portbld-freebsd/c/netinet/tcp.cr
593
lib/crystal/lib_c/x86_64-portbld-freebsd/c/pthread.cr
594
lib/crystal/lib_c/x86_64-portbld-freebsd/c/signal.cr
595
lib/crystal/lib_c/x86_64-portbld-freebsd/c/stddef.cr
596
lib/crystal/lib_c/x86_64-portbld-freebsd/c/stdint.cr
597
lib/crystal/lib_c/x86_64-portbld-freebsd/c/stdio.cr
598
lib/crystal/lib_c/x86_64-portbld-freebsd/c/stdlib.cr
599
lib/crystal/lib_c/x86_64-portbld-freebsd/c/string.cr
600
lib/crystal/lib_c/x86_64-portbld-freebsd/c/sys/mman.cr
601
lib/crystal/lib_c/x86_64-portbld-freebsd/c/sys/select.cr
602
lib/crystal/lib_c/x86_64-portbld-freebsd/c/sys/socket.cr
603
lib/crystal/lib_c/x86_64-portbld-freebsd/c/sys/stat.cr
604
lib/crystal/lib_c/x86_64-portbld-freebsd/c/sys/stat.cr.orig
605
lib/crystal/lib_c/x86_64-portbld-freebsd/c/sys/time.cr
606
lib/crystal/lib_c/x86_64-portbld-freebsd/c/sys/times.cr
607
lib/crystal/lib_c/x86_64-portbld-freebsd/c/sys/types.cr
608
lib/crystal/lib_c/x86_64-portbld-freebsd/c/sys/types.cr.orig
609
lib/crystal/lib_c/x86_64-portbld-freebsd/c/sys/un.cr
610
lib/crystal/lib_c/x86_64-portbld-freebsd/c/sys/wait.cr
611
lib/crystal/lib_c/x86_64-portbld-freebsd/c/sysctl.cr
612
lib/crystal/lib_c/x86_64-portbld-freebsd/c/termios.cr
613
lib/crystal/lib_c/x86_64-portbld-freebsd/c/time.cr
614
lib/crystal/lib_c/x86_64-portbld-freebsd/c/unistd.cr
615
lib/crystal/lib_c/x86_64-unknown-freebsd
616
lib/crystal/lib_c/x86_64-windows-msvc/c/errno.cr
617
lib/crystal/lib_c/x86_64-windows-msvc/c/winapi.cr
618
lib/crystal/lib_z/lib_z.cr
619
lib/crystal/llvm.cr
620
lib/crystal/llvm/abi.cr
621
lib/crystal/llvm/abi/aarch64.cr
622
lib/crystal/llvm/abi/arm.cr
623
lib/crystal/llvm/abi/x86.cr
624
lib/crystal/llvm/abi/x86_64.cr
625
lib/crystal/llvm/basic_block.cr
626
lib/crystal/llvm/basic_block_collection.cr
627
lib/crystal/llvm/builder.cr
628
lib/crystal/llvm/context.cr
629
lib/crystal/llvm/di_builder.cr
630
lib/crystal/llvm/enums.cr
631
lib/crystal/llvm/ext/llvm_ext.cc
632
lib/crystal/llvm/ext/llvm_ext.o
633
lib/crystal/llvm/function.cr
634
lib/crystal/llvm/function_collection.cr
635
lib/crystal/llvm/function_pass_manager.cr
636
lib/crystal/llvm/generic_value.cr
637
lib/crystal/llvm/global_collection.cr
638
lib/crystal/llvm/instruction_collection.cr
639
lib/crystal/llvm/jit_compiler.cr
640
lib/crystal/llvm/lib_llvm.cr
641
lib/crystal/llvm/lib_llvm_ext.cr
642
lib/crystal/llvm/memory_buffer.cr
643
lib/crystal/llvm/module.cr
644
lib/crystal/llvm/module_pass_manager.cr
645
lib/crystal/llvm/operand_bundle_def.cr
646
lib/crystal/llvm/parameter_collection.cr
647
lib/crystal/llvm/pass_manager_builder.cr
648
lib/crystal/llvm/pass_registry.cr
649
lib/crystal/llvm/phi_table.cr
650
lib/crystal/llvm/target.cr
651
lib/crystal/llvm/target_data.cr
652
lib/crystal/llvm/target_machine.cr
653
lib/crystal/llvm/type.cr
654
lib/crystal/llvm/value.cr
655
lib/crystal/llvm/value_methods.cr
656
lib/crystal/logger.cr
657
lib/crystal/macros.cr
658
lib/crystal/markdown.cr
659
lib/crystal/markdown/html_renderer.cr
660
lib/crystal/markdown/parser.cr
661
lib/crystal/markdown/renderer.cr
662
lib/crystal/math/libm.cr
663
lib/crystal/math/math.cr
664
lib/crystal/mutex.cr
665
lib/crystal/named_tuple.cr
666
lib/crystal/nil.cr
667
lib/crystal/number.cr
668
lib/crystal/oauth.cr
669
lib/crystal/oauth/access_token.cr
670
lib/crystal/oauth/authorization_header.cr
671
lib/crystal/oauth/consumer.cr
672
lib/crystal/oauth/error.cr
673
lib/crystal/oauth/oauth.cr
674
lib/crystal/oauth/params.cr
675
lib/crystal/oauth/request_token.cr
676
lib/crystal/oauth/signature.cr
677
lib/crystal/oauth2.cr
678
lib/crystal/oauth2/access_token/access_token.cr
679
lib/crystal/oauth2/access_token/bearer.cr
680
lib/crystal/oauth2/access_token/mac.cr
681
lib/crystal/oauth2/client.cr
682
lib/crystal/oauth2/error.cr
683
lib/crystal/oauth2/oauth2.cr
684
lib/crystal/oauth2/session.cr
685
lib/crystal/object.cr
686
lib/crystal/openssl.cr
687
lib/crystal/openssl/bio.cr
688
lib/crystal/openssl/cipher.cr
689
lib/crystal/openssl/digest/digest.cr
690
lib/crystal/openssl/digest/digest_base.cr
691
lib/crystal/openssl/digest/digest_io.cr
692
lib/crystal/openssl/hmac.cr
693
lib/crystal/openssl/lib_crypto.cr
694
lib/crystal/openssl/lib_ssl.cr
695
lib/crystal/openssl/md5.cr
696
lib/crystal/openssl/pkcs5.cr
697
lib/crystal/openssl/sha1.cr
698
lib/crystal/openssl/ssl/context.cr
699
lib/crystal/openssl/ssl/hostname_validation.cr
700
lib/crystal/openssl/ssl/socket.cr
701
lib/crystal/openssl/x509/certificate.cr
702
lib/crystal/openssl/x509/extension.cr
703
lib/crystal/openssl/x509/name.cr
704
lib/crystal/openssl/x509/x509.cr
705
lib/crystal/option_parser.cr
706
lib/crystal/partial_comparable.cr
707
lib/crystal/pointer.cr
708
lib/crystal/prelude.cr
709
lib/crystal/pretty_print.cr
710
lib/crystal/primitives.cr
711
lib/crystal/proc.cr
712
lib/crystal/process.cr
713
lib/crystal/process/executable_path.cr
714
lib/crystal/process/status.cr
715
lib/crystal/raise.cr
716
lib/crystal/random.cr
717
lib/crystal/random/isaac.cr
718
lib/crystal/random/pcg32.cr
719
lib/crystal/random/secure.cr
720
lib/crystal/range.cr
721
lib/crystal/range/bsearch.cr
722
lib/crystal/readline.cr
723
lib/crystal/reference.cr
724
lib/crystal/reflect.cr
725
lib/crystal/regex.cr
726
lib/crystal/regex/lib_pcre.cr
727
lib/crystal/regex/match_data.cr
728
lib/crystal/semantic_version.cr
729
lib/crystal/set.cr
730
lib/crystal/signal.cr
731
lib/crystal/slice.cr
732
lib/crystal/socket.cr
733
lib/crystal/socket/address.cr
734
lib/crystal/socket/addrinfo.cr
735
lib/crystal/socket/ip_socket.cr
736
lib/crystal/socket/server.cr
737
lib/crystal/socket/tcp_server.cr
738
lib/crystal/socket/tcp_socket.cr
739
lib/crystal/socket/udp_socket.cr
740
lib/crystal/socket/unix_server.cr
741
lib/crystal/socket/unix_socket.cr
742
lib/crystal/spec.cr
743
lib/crystal/spec/context.cr
744
lib/crystal/spec/dsl.cr
745
lib/crystal/spec/expectations.cr
746
lib/crystal/spec/formatter.cr
747
lib/crystal/spec/junit_formatter.cr
748
lib/crystal/spec/methods.cr
749
lib/crystal/spec/source.cr
750
lib/crystal/static_array.cr
751
lib/crystal/string.cr
752
lib/crystal/string/builder.cr
753
lib/crystal/string/formatter.cr
754
lib/crystal/string_pool.cr
755
lib/crystal/string_scanner.cr
756
lib/crystal/struct.cr
757
lib/crystal/symbol.cr
758
lib/crystal/system.cr
759
lib/crystal/tempfile.cr
760
lib/crystal/termios.cr
761
lib/crystal/thread.cr
762
lib/crystal/thread/condition_variable.cr
763
lib/crystal/thread/mutex.cr
764
lib/crystal/time.cr
765
lib/crystal/time/format.cr
766
lib/crystal/time/format/formatter.cr
767
lib/crystal/time/format/parser.cr
768
lib/crystal/time/format/pattern.cr
769
lib/crystal/time/span.cr
770
lib/crystal/tuple.cr
771
lib/crystal/unicode/data.cr
772
lib/crystal/unicode/unicode.cr
773
lib/crystal/union.cr
774
lib/crystal/uri.cr
775
lib/crystal/uri/uri_parser.cr
776
lib/crystal/uuid.cr
777
lib/crystal/value.cr
778
lib/crystal/weak_ref.cr
779
lib/crystal/winerror.cr
780
lib/crystal/xml.cr
781
lib/crystal/xml/attribute_type.cr
782
lib/crystal/xml/attributes.cr
783
lib/crystal/xml/builder.cr
784
lib/crystal/xml/error.cr
785
lib/crystal/xml/html_parser_options.cr
786
lib/crystal/xml/libxml2.cr
787
lib/crystal/xml/namespace.cr
788
lib/crystal/xml/node.cr
789
lib/crystal/xml/node_set.cr
790
lib/crystal/xml/parser_options.cr
791
lib/crystal/xml/reader.cr
792
lib/crystal/xml/save_options.cr
793
lib/crystal/xml/type.cr
794
lib/crystal/xml/xpath_context.cr
795
lib/crystal/yaml.cr
796
lib/crystal/yaml/any.cr
797
lib/crystal/yaml/builder.cr
798
lib/crystal/yaml/enums.cr
799
lib/crystal/yaml/from_yaml.cr
800
lib/crystal/yaml/lib_yaml.cr
801
lib/crystal/yaml/mapping.cr
802
lib/crystal/yaml/nodes.cr
803
lib/crystal/yaml/nodes/builder.cr
804
lib/crystal/yaml/nodes/nodes.cr
805
lib/crystal/yaml/nodes/parser.cr
806
lib/crystal/yaml/parse_context.cr
807
lib/crystal/yaml/parser.cr
808
lib/crystal/yaml/pull_parser.cr
809
lib/crystal/yaml/schema/core.cr
810
lib/crystal/yaml/schema/core/parser.cr
811
lib/crystal/yaml/schema/core/time_parser.cr
812
lib/crystal/yaml/schema/fail_safe.cr
813
lib/crystal/yaml/to_yaml.cr
814
lib/crystal/zip/checksum_reader.cr
815
lib/crystal/zip/checksum_writer.cr
816
lib/crystal/zip/compression_method.cr
817
lib/crystal/zip/file.cr
818
lib/crystal/zip/file_info.cr
819
lib/crystal/zip/reader.cr
820
lib/crystal/zip/writer.cr
821
lib/crystal/zip/zip.cr
822
lib/crystal/zlib/reader.cr
823
lib/crystal/zlib/writer.cr
824
lib/crystal/zlib/zlib.cr
825
man/man1/crystal.1.gz
826
%%ZSH%%share/zsh/site-functions/_crystal

Return to bug 224459