forked from otter-sec/sui-ctf-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 2.33 KB
/
Cargo.toml
File metadata and controls
36 lines (32 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "sui-ctf-framework"
version = "0.1.0"
edition = "2021"
license = "BSD-3-Clause"
homepage = "https://github.com/otter-sec/sui-ctf-framework"
description = "A framework for building sui based capture the flag challenges"
repository = "https://github.com/otter-sec/sui-ctf-framework"
keywords = ["sui", "blockchain", "ctf", "Capture The Flag", "security", "emulation", "framework"]
readme = "README.md"
categories = ["concurrency", "cryptography::cryptocurrencies", "simulation"]
[patch.crates-io]
pin-project-lite = { git = "https://github.com/taiki-e/pin-project-lite.git", rev = "cca1e8ae094ceff53e74abbfec8c9f2221ebd202" }
[dependencies]
tempfile = "3.2.0"
serde_json = "1.0"
once_cell = "1.17.1"
clap = { version = "3.1.8", features = ["derive"] }
diesel-async = { version = "0.5.2", features = ["deadpool", "postgres"] }
serde = { version = "1.0", features = ["derive"] }
sui-protocol-config = { git = "https://github.com/MystenLabs/sui", tag = "devnet-v1.47.0", package = "sui-protocol-config"}
sui-types = { git = "https://github.com/MystenLabs/sui", tag = "devnet-v1.47.0", package = "sui-types"}
sui-graphql-rpc = { git = "https://github.com/MystenLabs/sui", tag = "devnet-v1.47.0", package = "sui-graphql-rpc"}
sui-transactional-test-runner = { git = "https://github.com/MystenLabs/sui", tag = "devnet-v1.47.0", package = "sui-transactional-test-runner"}
move-symbol-pool = { git = "https://github.com/MystenLabs/sui", tag = "devnet-v1.47.0", package = "move-symbol-pool" }
move-stdlib = { git = "https://github.com/MystenLabs/sui", tag = "devnet-v1.47.0", package = "move-stdlib" }
move-compiler = { git = "https://github.com/MystenLabs/sui", tag = "devnet-v1.47.0", package = "move-compiler" }
move-binary-format = { git = "https://github.com/MystenLabs/sui", tag = "devnet-v1.47.0", package = "move-binary-format" }
move-command-line-common = { git = "https://github.com/MystenLabs/sui", tag = "devnet-v1.47.0", package = "move-command-line-common" }
move-transactional-test-runner = { git = "https://github.com/MystenLabs/sui", tag = "devnet-v1.47.0", package = "move-transactional-test-runner" }
move-core-types = { git = "https://github.com/MystenLabs/sui", tag = "devnet-v1.47.0", package = "move-core-types" }
move-bytecode-source-map = { git = "https://github.com/MystenLabs/sui", tag = "devnet-v1.47.0", package = "move-bytecode-source-map" }