Skip to content

Commit

Permalink
in-house cost logic for finer control (MystenLabs#4363)
Browse files Browse the repository at this point in the history
  • Loading branch information
oxade authored Aug 31, 2022
1 parent 466e59f commit 3b41203
Show file tree
Hide file tree
Showing 10 changed files with 886 additions and 379 deletions.
22 changes: 18 additions & 4 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ members = [
"crates/sui-config",
"crates/sui-core",
"crates/sui-cost",
"crates/sui-cost-tables",
"crates/sui-faucet",
"crates/sui-framework",
"crates/sui-framework-build",
Expand Down
23 changes: 23 additions & 0 deletions crates/sui-cost-tables/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[package]
name = "sui-cost-tables"
version = "0.1.0"
authors = ["Mysten Labs <[email protected]>"]
license = "Apache-2.0"
publish = false
edition = "2021"

[dependencies]
move-binary-format = { git = "https://github.com/move-language/move", rev = "70b34a66473c34ad30d101290b249f2db3c847a2" }
move-core-types = { git = "https://github.com/move-language/move", rev = "70b34a66473c34ad30d101290b249f2db3c847a2", features = ["address20"] }
move-vm-types = { git = "https://github.com/move-language/move", rev = "70b34a66473c34ad30d101290b249f2db3c847a2" }
move-vm-test-utils = { git = "https://github.com/move-language/move", rev = "70b34a66473c34ad30d101290b249f2db3c847a2" }
once_cell = "1.13.1"
workspace-hack = { path = "../workspace-hack"}

anyhow = { version = "1.0.58", features = ["backtrace"] }
tokio = { version = "1.20.1", features = ["full"] }
serde = { version = "1.0.141", features = ["derive"] }
strum = { version = "0.24", features = ["derive"] }
strum_macros = "0.24"
toml = "0.5.9"
bcs = "0.1.3"
4 changes: 4 additions & 0 deletions crates/sui-cost-tables/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// Copyright (c) 2022, Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

pub mod tables;
Loading

0 comments on commit 3b41203

Please sign in to comment.