I am trying to compile [a project that I did not touched for a bit of time 
(nimnews)](https://github.com/mildred/nimnews), and now when I compile it I 
have the following error:
    
    
    $ nimble c -d:ssl src/web/newsweb
    ...
    src/nntp/protocol.nim(136, 15) Error: ambiguous call; both 
asyncdispatch.await(f: Future[await.T]) [template declared in 
/home/mildred/.choosenim/toolchains/nim-1.6.6/lib/pure/asyncmacro.nim(128, 10)] 
and asyncmacro.await(f: Future[await.T]) [template declared in 
/home/mildred/.choosenim/toolchains/nim-1.6.6/lib/pure/asyncmacro.nim(128, 10)] 
match for: (Future[system.void])
    
    
    Run

The problem is that asyncdispatch is imported, but not asyncmacro. it does not 
appear at all in my project. How can this be?

Reply via email to