@@ -21,7 +21,6 @@ requires "kapsis#head"
21
21
requires " denim#head"
22
22
requires " checksums"
23
23
requires " flatty#head"
24
- # requires "malebolgia"
25
24
requires " nyml >= 0.1.8"
26
25
requires " zmq#head"
27
26
@@ -37,7 +36,7 @@ task examples, "build all examples":
37
36
exec " nim c -d:timHotCode --threads:on --mm:arc -o:./bin/" & x.name & " example/" & x.name & x.ext
38
37
39
38
task example, " example httpbeast + tim" :
40
- exec " nim c -d:timHotCode -d:watchoutBrowserSync --threads:on --mm:arc -o:./bin/example_httpbeast example/example_httpbeast.nim"
39
+ exec " nim c -d:timHotCode -d:watchoutBrowserSync --deepcopy:on --path:/Users/georgelemon/Development/packages/importer/src -- threads:on --mm:arc -o:./bin/example_httpbeast example/example_httpbeast.nim"
41
40
42
41
task examplep, " example httpbeast + tim release" :
43
42
exec " nim c -d:timStaticBundle -d:release --threads:on --mm:arc -o:./bin/example_httpbeast example/example_httpbeast.nim"
@@ -46,7 +45,13 @@ task bench, "run some benchmarks":
46
45
exec " nim c --threads:on -d:danger --opt:speed --mm:arc -o:./bin/bench example/benchmark.nim"
47
46
48
47
task dev, " build a dev cli" :
49
- exec " nimble build -d:timStandalone"
48
+ exec " nimble build -f - d:timStandalone"
50
49
51
50
task prod, " build a prod cli" :
52
51
exec " nimble build -d:release -d:timStandalone"
52
+
53
+ task fastparser, " testing a parser" :
54
+ exec " nimble --mm:arc -d:release c src/timpkg/engine/fastparser.nim -o:./bin/fastparser"
55
+
56
+ task client, " build udp client" :
57
+ exec " nimble c src/timpkg/server/client.nim"
0 commit comments