enso/.gitignore
Michał Wawrzyniec Urbańczyk dbecb2c871
JSON-RPC Client Support Library for Rust (#429)
This PR adds `json-rpc` crate — a library facilitating writing clients using JSON-RPC 2.0 protocol.

This library is meant to be used in implementation of File Manager and, in future, of Language Server clients.

The library is agnostic about `Transport` — but the interface has been designed in compliance with web-sys websockets, as this will be primary platform. 

The RPC clients implemented on top of this library are expected to provide Future-based asynchronous API.

Client is designed to work in a single-thread environment,

Implements #426.
2020-01-18 03:45:38 +01:00

107 lines
1001 B
Plaintext

#############
## GraalVM ##
#############
graal_dumps
##########
## Java ##
##########
*.class
###########
## Scala ##
###########
graal_dumps/
target/
*.class
*.log
##########
## Rust ##
##########
Cargo.lock
#############
## Haskell ##
#############
dist
cabal-dev
*.o
*.hi
*.chi
*.chs.h
*.dyn_o
*.dyn_hi
.hpc
.hsenv
.cabal-sandbox/
cabal.sandbox.config
*.cabal
*.prof
*.aux
*.hp
*.DS_Store
.stack-work/
############
## System ##
############
# OSX
.DS_Store
############
## Images ##
############
*.jpg
*.jpeg
*.bmp
*.psd
######################
## Tooling Specific ##
######################
.idea/
*.swp
.projections.json
############################
## Rendered Documentation ##
############################
javadoc/
scaladoc/
#######################
## Benchmark Reports ##
#######################
bench-report.xml
##############
## Binaries ##
##############
/enso
/enso.jar
#########
## IDE ##
#########
.editorconfig
.bloop
#########
## NPM ##
#########
node_modules/