Go to file
Tomasz Drwięga f118e30b20 Renaming variables to more descriptive 2016-02-26 19:56:32 +01:00
devtools Delete LICENSE.txt 2016-02-20 12:38:16 +03:00
docker tabified 2016-02-08 19:58:19 +01:00
ethash Tests for issue #161 2016-02-21 02:11:09 +00:00
ethcore Renaming variables to more descriptive 2016-02-26 19:56:32 +01:00
evmjit version bump, test script for full suite 2016-02-16 13:40:58 +03:00
parity Merge pull request #493 from ethcore/jsonrpc_security 2016-02-25 14:08:18 +01:00
rpc Merge pull request #418 from ethcore/jsonrpc2 2016-02-26 13:08:41 +01:00
sync Merge pull request #418 from ethcore/jsonrpc2 2016-02-26 13:08:41 +01:00
util Merge pull request #515 from ethcore/bigint-opt 2016-02-26 17:25:18 +01:00
.editorconfig Editorconfig file. 2016-02-09 10:50:29 +01:00
.gitignore ignore intellij idea project files as well 2016-02-26 10:07:30 +01:00
.gitmodules Submodule over https 2016-02-08 00:46:59 +01:00
.travis.yml Merge branch 'master' of github.com:ethcore/parity into db 2016-02-24 21:32:21 +01:00
Cargo.lock rocksdb dependency version bump 2016-02-26 03:22:18 +01:00
Cargo.toml Log formatting 2016-02-23 20:14:37 +01:00
LICENSE Change to library. 2015-11-24 21:05:08 +01:00
README.md Removed rocksdb from build scripts and instructions 2016-02-26 13:27:05 +01:00
add_license.sh added license in every *.rs file 2016-02-05 13:40:41 +01:00
cov.sh excluding test code itself from coverage 2016-02-10 03:27:54 +03:00
doc.sh doc.sh 2016-02-02 14:31:12 +01:00
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_header prepare for adding licenses 2016-02-05 13:36:30 +01:00
test.sh version bump, test script for full suite 2016-02-16 13:40:58 +03:00

README.md

ethcore

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

Documentation

Building from source

Ubuntu 14.04, 15.04, 15.10
# install multirust
curl -sf https://raw.githubusercontent.com/brson/multirust/master/blastoff.sh | sh -s -- --yes

# download and build parity
git clone https://github.com/ethcore/parity
cd parity

# parity should be build with rust beta
multirust override beta

# build in release
cargo build --release
Other Linux
# install rust beta
curl -sf https://raw.githubusercontent.com/brson/multirust/master/blastoff.sh | sudo sh -s -- --yes

# download and build parity
git clone https://github.com/ethcore/parity
cd parity

# parity should be build with rust beta
multirust override beta

# build in release
cargo build --release
OSX with Homebrew
# install multirust
brew update
brew install multirust

# download and build parity
git clone https://github.com/ethcore/parity
cd parity

# use rust beta for building parity
multirust override beta

cargo build --release