mirror of
https://github.com/enso-org/enso.git
synced 2024-11-23 16:18:23 +03:00
dbecb2c871
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.
107 lines
1001 B
Plaintext
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/
|