-
Notifications
You must be signed in to change notification settings - Fork 450
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add ink entrance crate * Use entrance crate from lang codegen * Use entrance crate for ink_storage * Update primitives and storage * Fix primitive macro * Move unique_topics test to ink crate * Update ink crate versions * Use umbrella crate in ink primitives macro * Use umbrella crate in storage derive macros * Use umbrella crate in storage doc tests * Use umbrella crate in lang codegen * Fix storage doc tests * Update erc20 example * Remove scale libs from entrance crate * Rename ink_lang crate to ink * Reexport sub crates from main ink crate * Metadata std * Fix up some examples * Fix up delegator example * Fix up more examples * Fix up more examples * Fix up more examples * Remove some ink_lang as ink from tests * Update env_access docs * Fix up more doc examples * Remove ink_lang import from some tests * UI tests * Fix UI tests * Remove more ink_lang aliases * Fix contract-terminate tests * Fmt * Attempt to fix CI and ARCHITECTURE doc * Update crates list * Restore unique_topics test * Remove ink_lang from unique_topics test * Fix typo * UI tests * UI tests * Fmt examples * Fmt UI tests * More fmt UI tests * Fix storage tests * Fix example tests * Fix examplesl * Fix example test * Examples fmt * Fix erc20 * Fmt erc20 * Fix doc test * Move unique_topics test * Fix UI tests * Revert CHANGELOG.md * Use cargo-contract branch in examples-contract-build * Add ink-debug feature to top level ink crate * Update CHANGELOG.md * Rename all ink_lang_* crates to ink_* * Replace remaining ink_lang_macro refs * Update CHANGELOG.md Co-authored-by: Michael Müller <[email protected]> * Update CHANGELOG Co-authored-by: Michael Müller <[email protected]>
- Loading branch information
Showing
514 changed files
with
1,549 additions
and
2,173 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[package] | ||
name = "ink_lang" | ||
name = "ink" | ||
version = "4.0.0-alpha.1" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
@@ -20,13 +20,13 @@ ink_storage = { version = "4.0.0-alpha.1", path = "../storage", default-features | |
ink_primitives = { version = "4.0.0-alpha.1", path = "../primitives", default-features = false } | ||
ink_metadata = { version = "4.0.0-alpha.1", path = "../metadata", default-features = false, optional = true } | ||
ink_prelude = { version = "4.0.0-alpha.1", path = "../prelude", default-features = false } | ||
ink_lang_macro = { version = "4.0.0-alpha.1", path = "macro", default-features = false } | ||
ink_macro = { version = "4.0.0-alpha.1", path = "macro", default-features = false } | ||
|
||
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive", "full"] } | ||
derive_more = { version = "0.99", default-features = false, features = ["from"] } | ||
|
||
[dev-dependencies] | ||
ink_lang_ir = { path = "./ir" } | ||
ink_ir = { path = "./ir" } | ||
ink_metadata = { path = "../metadata", default-features = false } | ||
|
||
trybuild = { version = "1.0.60", features = ["diff"] } | ||
|
@@ -41,7 +41,11 @@ std = [ | |
"ink_primitives/std", | ||
"ink_env/std", | ||
"ink_storage/std", | ||
"ink_lang_macro/std", | ||
"ink_macro/std", | ||
"scale/std", | ||
] | ||
# Enable contract debug messages via `debug_print!` and `debug_println!`. | ||
ink-debug = [ | ||
"ink_env/ink-debug", | ||
] | ||
show-codegen-docs = [] |
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions
8
crates/lang/codegen/Cargo.toml → crates/ink/codegen/Cargo.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
[package] | ||
name = "ink_lang_codegen" | ||
name = "ink_codegen" | ||
version = "4.0.0-alpha.1" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
license = "Apache-2.0" | ||
readme = "README.md" | ||
repository = "https://github.com/paritytech/ink" | ||
documentation = "https://docs.rs/ink_lang_codegen/" | ||
documentation = "https://docs.rs/ink_codegen/" | ||
homepage = "https://www.parity.io/" | ||
description = "data structures and algorithms for generating ink! IR code" | ||
keywords = ["wasm", "parity", "webassembly", "blockchain", "edsl"] | ||
categories = ["no-std", "embedded"] | ||
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | ||
|
||
[lib] | ||
name = "ink_lang_codegen" | ||
name = "ink_codegen" | ||
|
||
[dependencies] | ||
ink_primitives = { version = "4.0.0-alpha.1", path = "../../primitives" } | ||
ir = { version = "4.0.0-alpha.1", package = "ink_lang_ir", path = "../ir", default-features = false } | ||
ir = { version = "4.0.0-alpha.1", package = "ink_ir", path = "../ir", default-features = false } | ||
quote = "1" | ||
syn = { version = "1.0", features = ["parsing", "full", "extra-traits"] } | ||
proc-macro2 = "1.0" | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.