-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move binary crates into a dedicated dir (#1471)
refactor
- Loading branch information
Showing
57 changed files
with
160 additions
and
39 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
[package] | ||
edition.workspace = true | ||
name = "torii" | ||
version.workspace = true | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
anyhow.workspace = true | ||
async-trait.workspace = true | ||
base64 = "0.21.2" | ||
camino.workspace = true | ||
chrono.workspace = true | ||
clap.workspace = true | ||
ctrlc = { version = "3.4", features = [ "termination" ] } | ||
dojo-types.workspace = true | ||
dojo-world.workspace = true | ||
either = "1.9.0" | ||
futures.workspace = true | ||
http = "0.2.9" | ||
http-body = "0.4.5" | ||
hyper-reverse-proxy = { git = "https://github.com/tarrencev/hyper-reverse-proxy" } | ||
hyper.workspace = true | ||
indexmap = "1.9.3" | ||
lazy_static.workspace = true | ||
metrics-process.workspace = true | ||
metrics.workspace = true | ||
scarb.workspace = true | ||
serde.workspace = true | ||
serde_json.workspace = true | ||
sqlx.workspace = true | ||
starknet-crypto.workspace = true | ||
starknet.workspace = true | ||
tokio-stream = "0.1.11" | ||
tokio-util = "0.7.7" | ||
tokio.workspace = true | ||
torii-core.workspace = true | ||
torii-graphql.workspace = true | ||
torii-grpc = { workspace = true, features = [ "server" ] } | ||
torii-server.workspace = true | ||
tower = "0.4.13" | ||
tower-http = "0.4.4" | ||
tracing-subscriber.workspace = true | ||
tracing.workspace = true | ||
url.workspace = true | ||
|
||
[dev-dependencies] | ||
camino.workspace = true | ||
|
||
[features] | ||
default = [ "jemalloc", "sqlite" ] | ||
jemalloc = [ "metrics/jemalloc" ] | ||
sqlite = [ "sqlx/sqlite" ] |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# `dojoup` | ||
|
||
```sh | ||
curl -L https://install.dojoengine.org | bash | ||
``` | ||
|
||
[Documentation](https://book.dojoengine.org/toolchain/torii/overview.html) |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
pub mod proxy; |