Skip to content

Commit

Permalink
Add verifier crate (#63)
Browse files Browse the repository at this point in the history
* Add verifier crate

* Fix lint
  • Loading branch information
emhane authored Sep 15, 2024
1 parent 52a24da commit aa6adc1
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ members = [
"crates/triple",
"crates/macros",
"crates/interpreter",
"crates/verifier",
]
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Sonatina is really early stage in development, so do NOT use it for production!
* `object`: Provides abstract object file format for linker.
* `parser`: Parser for `sonatina` IR, this is mainly for `filecheck` test.
* `triple`: Provides target triple for smart contracts.
* `verifier`: Verifier for `sonatina` IR, this is mainly for testing transformation passes.

## TODO
* [ ] IR verifier
Expand Down
15 changes: 15 additions & 0 deletions crates/verifier/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[package]
name = "sonatina-verifier"
version = "0.0.3-alpha"
edition = "2021"
authors = ["Sonatina Developers"]
license = "Apache-2.0"
readme = "../../README.md"
homepage = "https://github.com/fe-lang/sonatina/tree/main/crates/verifier"
repository = "https://github.com/fe-lang/sonatina"
description = "Verifier for sonatina intermediate representation"
categories = ["compilers", "wasm"]
keywords = ["compiler", "evm", "wasm", "smart-contract"]


# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1 change: 1 addition & 0 deletions crates/verifier/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

0 comments on commit aa6adc1

Please sign in to comment.