- 09 Aug, 2019 1 commit
-
-
Andrew Jones authored
* [*] parity-codec -> parity-scale-codec * [core, model] Decode impls Option -> Result * [core] typed_cell load expect successful Decode * [core] Option to Result, remove redundant combinator * [model] Option to Result * [*] abbreviate parity-scale-codec * [core] fix dummy Call Decode impl
-
- 24 Jul, 2019 1 commit
-
-
Hero Bird authored
* make std crate feature default for all ink crates * adjust travis CI for builds without std feature enabled * remove incorrect usages of ink_abi * apply rustfmt * remove invalid type-metadata dependencies for ink_core * [lang] fix Cargo.toml indentations * adjust Erc20 token examples for new std crate feature * adjust template and lang example std feature and propagation
-
- 24 May, 2019 1 commit
-
-
Hero Bird authored
* [core] Factor nightly alloc parts out of core into new alloc ink crate * Further cleanup after factoring out ink_alloc crate * [alloc] Use symlinks instead of copies
-
- 23 May, 2019 1 commit
-
-
Hero Bird authored
* [ink] Update rust-toolchain from 2019-04-20 to 2019-05-21 * [core,lang] Update & fix Cargo information * [chores] Update rustfmt version to the current toolchain * [core] Clean up, fix some warnings * [core] Remove unneeded dependency * [core] Ignore return value of Key ops Fixes a warning * [core,model] Adjust warning level * [lang] Minor rustfmt run * [ink] Add topics to events For now, ink! will simply leave topics slice empty. * [core] Add ext_gas_left, ext_gas_price and ext_value_transferred bindings * [core] Clean up some code by dedup * [core] Further code clean up * [core] Simplify SrmlEnv::load impl
-
- 22 Apr, 2019 1 commit
-
-
Robin Freyler authored
-
- 28 Mar, 2019 1 commit
-
-
Robin Freyler authored
-
- 27 Mar, 2019 1 commit
-
-
Robin Freyler authored
-
- 15 Mar, 2019 1 commit
-
-
Robin Freyler authored
-
- 19 Feb, 2019 1 commit
-
-
Hero Bird authored
-
- 06 Feb, 2019 1 commit
-
-
Hero Bird authored
Note: No other changes and renamings have been done yet so the crate is currently not in a compilable state.
-
- 18 Jan, 2019 1 commit
-
-
Hero Bird authored
-
- 15 Jan, 2019 2 commits
- 10 Jan, 2019 1 commit
-
-
Hero Bird authored
Now it has the required features in a branch.
-
- 09 Jan, 2019 5 commits
-
-
Hero Bird authored
This is required because of some special impls for pDSL that while not being mandatory, they are still important enough to serve usability.
-
Hero Bird authored
-
Hero Bird authored
-
Hero Bird authored
-
Hero Bird authored
The problem is that env_logger is obviously not no_std compatible. At first you would think that this is not a problem, since it is only a dev-dependency that is allowed to pull the std lib. However, due to a Cargo "bug" all dev-dependencies and normal dependencies need to have shared feature flags. So since env_logger depends on log and pdsl_core depends on log both need to share their feature set which is chosen to be just the one that pulls std - what a mess ... We now need our own logging facilities that are no_std compatible.
-
- 08 Jan, 2019 3 commits
- 04 Jan, 2019 1 commit
-
-
Hero Bird authored
This will help writing tests with general setup and tear-down mechanics. Used to initialize env_logger for every unit test.
-
- 17 Dec, 2018 2 commits
- 15 Dec, 2018 1 commit
-
-
Hero Bird authored
The new system uses similar patterns as .gitignore does.
-
- 13 Dec, 2018 2 commits
- 12 Dec, 2018 1 commit
-
-
Hero Bird authored
This enabled TestEnv and disabled DefaultEnv. Use this for testing. Before this commit the standard "test" feature was used, however, its problem is that the test feature is crate-local and cannot be enabled or disabled by dependencies.
-
- 10 Dec, 2018 1 commit
-
-
Hero Bird authored
-