Lev
2 years ago
6 changed files with 44 additions and 1 deletions
@ -1,3 +1,9 @@
|
||||
![](https://agorata.io/logo_single.png) |
||||
|
||||
# Agorata Core |
||||
|
||||
The Core of Agorata written in Rust |
||||
|
||||
`agorata_contracts/` contains the tools for representing smart contracts (as state machines). |
||||
|
||||
`agolytics/` contains the tools for analyzing smart contracts. |
||||
|
@ -0,0 +1,8 @@
|
||||
[package] |
||||
name = "agolytics" |
||||
version = "0.1.0" |
||||
edition = "2021" |
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
||||
|
||||
[dependencies] |
@ -0,0 +1,8 @@
|
||||
#[cfg(test)] |
||||
mod tests { |
||||
#[test] |
||||
fn it_works() { |
||||
let result = 2 + 2; |
||||
assert_eq!(result, 4); |
||||
} |
||||
} |
@ -0,0 +1,8 @@
|
||||
[package] |
||||
name = "agorata_contracts" |
||||
version = "0.1.0" |
||||
edition = "2021" |
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
||||
|
||||
[dependencies] |
Loading…
Reference in new issue