Skip to content

Commit

Permalink
Merge pull request #62 from SiaFoundation/nate/chain-state
Browse files Browse the repository at this point in the history
Implement networks and chain state, remove signing state
  • Loading branch information
n8maninger authored Nov 17, 2024
2 parents 376c12e + ecbf307 commit 6c06d02
Show file tree
Hide file tree
Showing 20 changed files with 2,628 additions and 683 deletions.
53 changes: 53 additions & 0 deletions Cargo.lock

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

5 changes: 1 addition & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[workspace]
resolver = "2"
members = [
"sia",
"sia_sdk_derive",
]
members = ["sia", "sia_derive"]
8 changes: 6 additions & 2 deletions sia/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,18 @@ bip39 = "2.1.0"
blake2b_simd = "1.0.2"
ed25519-dalek = "2.1.1"
hex = "0.4.3"
num-bigint = "0.4.6"
num-rational = { version = "0.4.2", features = ["num-bigint"] }
num-traits = "0.2.19"
rayon = "1.10.0"
serde = { version = "1.0.213", features = ["derive"] }
serde-big-array = "0.5.1"
serde_json = "1.0.132"
sha2 = "0.10.8"
sia_sdk_derive = { version = "0.0.1", path = "../sia_sdk_derive" }
sia_sdk_derive = { version = "0.0.1", path = "../sia_derive" }
thiserror = "2.0.3"
time = {version = "0.3.36", features = ["serde"] }
time = { version = "0.3.36", features = ["serde", "formatting", "parsing"] }
uint = "0.10.0"

[dev-dependencies]
rand = "0.8.5"
Expand Down
Loading

0 comments on commit 6c06d02

Please sign in to comment.