Skip to content

Commit

Permalink
Merge pull request openethereum#5591 from paritytech/relicense-rlp
Browse files Browse the repository at this point in the history
relicense RLP to MIT/Apache2
  • Loading branch information
rphmeier authored May 11, 2017
2 parents 83325b5 + 79f9e9b commit 38ed39e
Show file tree
Hide file tree
Showing 30 changed files with 600 additions and 214 deletions.
47 changes: 25 additions & 22 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ethcrypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ rust-crypto = "0.2.36"
tiny-keccak = "1.0"
eth-secp256k1 = { git = "https://github.com/paritytech/rust-secp256k1" }
ethkey = { path = "../ethkey" }
ethcore-bigint = { path = "../util/bigint" }
ethcore-bigint = "0.1.2"

2 changes: 1 addition & 1 deletion ethkey/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ tiny-keccak = "1.0"
eth-secp256k1 = { git = "https://github.com/paritytech/rust-secp256k1" }
rustc-serialize = "0.3"
docopt = { version = "0.7", optional = true }
ethcore-bigint = { path = "../util/bigint" }
ethcore-bigint = "0.1.2"
rust-crypto = "0.2"
byteorder = "1.0"

Expand Down
2 changes: 1 addition & 1 deletion ethstore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ time = "0.1.34"
itertools = "0.5"
parking_lot = "0.4"
ethcrypto = { path = "../ethcrypto" }
ethcore-bigint = { path = "../util/bigint" }
ethcore-bigint = "0.1.2"
smallvec = "0.3.1"
parity-wordlist = "1.0"
tempdir = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion hw/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ parking_lot = "0.4"
hidapi = { git = "https://github.com/paritytech/hidapi-rs" }
libusb = { git = "https://github.com/paritytech/libusb-rs" }
ethkey = { path = "../ethkey" }
ethcore-bigint = { path = "../util/bigint" }
ethcore-bigint = "0.1.2"

[dev-dependencies]
rustc-serialize = "0.3"
2 changes: 1 addition & 1 deletion rpc_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version = "1.4.0"
[dependencies]
futures = "0.1"
rpassword = "0.3.0"
ethcore-bigint = { path = "../util/bigint" }
ethcore-bigint = "0.1.2"
parity-rpc = { path = "../rpc" }
parity-rpc-client = { path = "../rpc_client" }
ethcore-util = { path = "../util" }
2 changes: 1 addition & 1 deletion util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ethcore-devtools = { path = "../devtools" }
libc = "0.2.7"
vergen = "0.1"
target_info = "0.1"
ethcore-bigint = { path = "bigint" }
ethcore-bigint = "0.1.2"
parking_lot = "0.4"
using_queue = { path = "using_queue" }
table = { path = "table" }
Expand Down
6 changes: 3 additions & 3 deletions util/bigint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
description = "Large fixed-size integers and hash function outputs"
homepage = "http://parity.io"
repository = "https://github.com/paritytech/parity"
license = "GPL-3.0"
license = "MIT/Apache-2.0"
name = "ethcore-bigint"
version = "0.1.2"
version = "0.1.3"
authors = ["Parity Technologies <[email protected]>"]

[dependencies]
bigint = "1.0"
bigint = "1.0.4"
rustc-serialize = "0.3"
heapsize = "0.3"
rand = "0.3.12"
Expand Down
Loading

0 comments on commit 38ed39e

Please sign in to comment.