Go to file
Marek Kotewicz 70389b2888 Merge pull request #922 from ethcore/beta-staging
Master to beta v1.0.2
2016-04-11 16:42:09 +02:00
devtools Version 1.0 2016-03-14 01:01:15 +01:00
docker update dockerfiles 2016-03-14 18:47:23 +01:00
ethash Version 1.0 2016-03-14 01:01:15 +01:00
ethcore Avoid signalling readiness when app is about to be closed 2016-04-09 13:28:43 +02:00
evmjit Version 1.0 2016-03-14 01:01:15 +01:00
json improvements to build, updated dependencies, moved rpctest to its own submodule 2016-03-21 00:04:53 +01:00
miner Propagate transaction queue 2016-04-09 13:28:37 +02:00
parity --unlock is comma-delimited. 2016-04-11 14:37:10 +02:00
rpc fixed transaction deadlock 2016-04-11 14:39:01 +02:00
sync Propagate transaction queue 2016-04-09 13:28:37 +02:00
util removing lower-level defaults 2016-04-11 14:36:02 +02: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 Submodule over https 2016-02-08 00:46:59 +01:00
.travis.yml Speeding up build 2016-03-22 21:44:58 +01:00
Cargo.lock Use new json RPC server 2016-04-09 13:31:34 +02:00
Cargo.toml v1.0.2 2016-04-06 16:15:36 +02:00
LICENSE Change to library. 2015-11-24 21:05:08 +01:00
README.md complete getting started steps for OS X 2016-03-22 21:58:28 +01:00
add_license.sh added license in every *.rs file 2016-02-05 13:40:41 +01:00
build.rs Fixing clippy warnings. When building on nightly it is required to enable clippy 2016-03-07 14:34:17 +01:00
cov.sh Adding ethminer to dev/ci files 2016-03-08 15:53:12 +01:00
doc.sh Adding ethminer to dev/ci files 2016-03-08 15:53:12 +01:00
hook.sh Merge branch 'master' into ethminer_crate 2016-03-11 14:37:07 +01:00
install-deps.sh Fix install-deps.sh. 2016-03-02 13:40:11 +01:00
install-parity.sh Update install-parity.sh 2016-03-20 23:49:34 +01:00
license_header prepare for adding licenses 2016-02-05 13:36:30 +01:00
test.sh Merge branch 'master' into uint_opt 2016-03-14 23:45:16 +01:00

README.md

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
multirust default stable

Then, download and build Parity:

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

# build in release mode
cargo build --release