Skip to content

Commit

Permalink
feat: remove client dependency from faucet (#368)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomyrd authored Jun 7, 2024
1 parent a111179 commit 0bd0ee4
Show file tree
Hide file tree
Showing 21 changed files with 442 additions and 356 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

* Standardised CI and Makefile across Miden repositories (#367)
* Remove client dependency from faucet (#368).

## 0.3.0 (2024-05-15)

Expand Down
158 changes: 20 additions & 138 deletions Cargo.lock

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

7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,19 @@ readme = "README.md"

[workspace.dependencies]
miden-air = { version = "0.9", default-features = false }
miden-lib = { version = "0.3" }
miden-lib = { package = "miden-lib", git = "https://github.com/0xPolygonMiden/miden-base.git", branch = "next" }
miden-node-block-producer = { path = "crates/block-producer", version = "0.3" }
miden-node-faucet = { path = "bin/faucet", version = "0.3" }
miden-node-proto = { path = "crates/proto", version = "0.3" }
miden-node-rpc = { path = "crates/rpc", version = "0.3" }
miden-node-store = { path = "crates/store", version = "0.3" }
miden-node-test-macro = { path = "crates/test-macro" }
miden-node-utils = { path = "crates/utils", version = "0.3" }
miden-objects = { version = "0.3" }
miden-objects = { package = "miden-objects", git = "https://github.com/0xPolygonMiden/miden-base.git", branch = "next" }
miden-processor = { version = "0.9" }
miden-stdlib = { version = "0.9", default-features = false }
miden-tx = { version = "0.3" }
miden-tx = { package = "miden-tx", git = "https://github.com/0xPolygonMiden/miden-base.git", branch = "next" }
thiserror = { version = "1.0" }
tonic = { version = "0.11" }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3", features = ["fmt", "json", "env-filter"] }
12 changes: 7 additions & 5 deletions bin/faucet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repository.workspace = true
[features]
# Makes `make-genesis` subcommand run faster. Is only suitable for testing.
# INFO: Make sure that all your components have matching features for them to function.
testing = ["miden-client/testing"]
testing = ["miden-objects/testing", "miden-lib/testing"]

[dependencies]
actix-cors = "0.7.0"
Expand All @@ -23,12 +23,14 @@ actix-web = "4"
async-mutex = "1.4.0"
derive_more = "0.99.17"
figment = { version = "0.10", features = ["toml", "env"] }
miden-client = { version = "0.3", features = ["concurrent"] }
miden-lib = { version = "0.3" }
miden-lib = { workspace = true, features = ["concurrent"] }
miden-node-proto = { workspace = true }
miden-node-utils = { workspace = true }
miden-objects = { version = "0.3" }
miden-objects = { workspace = true , features = ["concurrent"] }
miden-tx = { workspace = true, features = ["concurrent"] }
rand = { version = "0.8.5" }
rand_chacha = "0.3"
serde = { version = "1.0", features = ["derive"] }
tracing = { workspace = true }
thiserror = { workspace = true }
tonic = { workspace = true }
tracing = { workspace = true }
Loading

0 comments on commit 0bd0ee4

Please sign in to comment.