Skip to content

Commit

Permalink
up logging
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmitry-lahoda committed Mar 26, 2024
1 parent d81938e commit ff6f4eb
Show file tree
Hide file tree
Showing 6 changed files with 299 additions and 101 deletions.
176 changes: 172 additions & 4 deletions Cargo.lock

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

23 changes: 21 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
[workspace]
members = ["crates/*", "contracts/cosmwasm/*", "mantis/node", "mantis/blackbox_rs"]
members = [
"crates/*",
"contracts/cosmwasm/*",
"mantis/node",
"mantis/blackbox_rs",
]
exclude = ["contracts/cosmwasm/node_modules/", "contracts/cosmwasm/dist"]
resolver = "2"
package.version = "0.3.0"
Expand Down Expand Up @@ -45,6 +50,21 @@ derive_more = { version = "0.99.17", default-features = false, features = [
"try_into",
"unwrap",
] }
log = { version = "0.4.21", default_features = false, features = [
"std",
"serde",
"kv_std",
"kv_sval",
"kv_serde",
] }
env_logger = { version = "*", default-features = false, features = [
"default",
"color",
"auto-color",
"humantime",
"regex",
"unstable-kv",
] }
hex = { version = "^0.4.3", default-features = false }
num = { version = "^0.4.1", default-features = false }
enumn = { version = "0.1.12" }
Expand All @@ -54,7 +74,6 @@ cosmwasm-std = { version = "^1.5.0", features = [
"iterator",
], default-features = false }

log = { version = "0.4.21", default-features = true}
parity-scale-codec = { version = "^3.6.5", default-features = false }
cw20 = { version = "^1.1.2", default-features = false }
cw-controllers = { version = "^1.1.1", default-features = false }
Expand Down
3 changes: 2 additions & 1 deletion mantis/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ cw-mantis-order = { workspace = true, features = [
"json-schema",
"std",
] }
log = { workspace = true }
derive_more = { workspace = true, features = [] }
itertools = { workspace = true, features = []}
num-traits = { workspace = true, features = ["std"]}
Expand All @@ -42,7 +43,7 @@ cvm-runtime = { workspace = true, features = ["std"] }
ndarray ={ workspace = true, features = ["std", "serde"]}
good_lp = {workspace = true, features = ["coin_cbc", "singlethread-cbc"]}
fraction = {workspace = true, features = ["default"]}
log ={ workspace = true}
env_logger = {workspace = true}

[dev-dependencies]
rustfmt-wrapper = "0.2.1"
Loading

0 comments on commit ff6f4eb

Please sign in to comment.