Go to file
2016-03-02 04:54:47 +01:00
devtools Delete LICENSE.txt 2016-02-20 12:38:16 +03:00
docker
ethash Tests for issue #161 2016-02-21 02:11:09 +00:00
ethcore added missing , in comment 2016-03-02 04:54:47 +01:00
evmjit version bump, test script for full suite 2016-02-16 13:40:58 +03:00
parity jsonrpc uses weak pointers to client 2016-02-29 11:58:33 +01:00
rpc jsonrpc uses weak pointers to client 2016-02-29 11:58:33 +01:00
sync Unused variable 2016-02-29 23:43:48 +01:00
util Merge pull request #545 from ethcore/table 2016-03-01 15:01:35 +03:00
.editorconfig Editorconfig file. 2016-02-09 10:50:29 +01:00
.gitignore ignore out directory 2016-02-29 21:14:38 +01:00
.gitmodules
.travis.yml Merge branch 'master' of github.com:ethcore/parity into db 2016-02-24 21:32:21 +01:00
add_license.sh
Cargo.lock Merge pull request #526 from ethcore/serde_update 2016-02-27 16:09:44 +01:00
Cargo.toml Memory management 2016-02-25 14:09:39 +01:00
cov.sh excluding test code itself from coverage 2016-02-10 03:27:54 +03:00
doc.sh
hook.sh Fixing clippy warnings. Implementing PartialEq for Uints 2016-02-23 11:40:23 +01:00
install-deps.sh Removed rocksdb from build scripts and instructions 2016-02-26 13:27:05 +01:00
install-parity.sh Removed rocksdb from build scripts and instructions 2016-02-26 13:27:05 +01:00
LICENSE
license_header
README.md fixup install script 2016-03-01 10:09:22 +08:00
test.sh version bump, test script for full suite 2016-02-16 13:40:58 +03:00

ethcore

Build Status Coverage Status Join the chat at https://gitter.im/trogdoro/xiki GPLv3

Documentation

Building from source

First (if you don't already have it) get multirust:

  • Linux:
curl -sf https://raw.githubusercontent.com/brson/multirust/master/quick-install.sh | sudo sh -s -- --yes
  • OSX with Homebrew:
brew update && brew install multirust

Then, download and build Parity:

# download Parity code
git clone https://github.com/ethcore/parity
cd parity

# parity should be built with rust beta
multirust override beta

# build in release mode
cargo build --release