From 0e2efc71059607d6d9799227802ef2811cebe125 Mon Sep 17 00:00:00 2001 From: IgorKoval Date: Tue, 30 Apr 2024 22:45:14 +0300 Subject: [PATCH 1/2] rebranding --- Cargo.lock | 87 +++++++++++++++++++------------------ Cargo.toml | 10 ++--- build.rs | 4 +- src/account.rs | 2 +- src/call.rs | 2 +- src/compile.rs | 4 +- src/completion.rs | 4 +- src/config.rs | 4 +- src/convert.rs | 4 +- src/crypto.rs | 4 +- src/debot/callbacks.rs | 4 +- src/debot/interfaces/mod.rs | 4 +- src/debot/mod.rs | 2 +- src/debot/term_browser.rs | 4 +- src/debug.rs | 2 +- src/decode.rs | 2 +- src/deploy.rs | 2 +- src/depool.rs | 4 +- src/depool_abi.rs | 4 +- src/genaddr.rs | 2 +- src/getconfig.rs | 2 +- src/helpers.rs | 2 +- src/main.rs | 2 +- src/message.rs | 4 +- src/multisig.rs | 2 +- src/replay.rs | 2 +- src/run.rs | 2 +- src/sendfile.rs | 4 +- src/test.rs | 2 +- src/voting.rs | 4 +- 30 files changed, 91 insertions(+), 90 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3d1e787c..68ce48cd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -426,12 +426,13 @@ checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" [[package]] name = "cc" -version = "1.0.94" +version = "1.0.96" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17f6e324229dc011159fcc089755d1e2e216a90d43a7dea6853ca740b84f35e7" +checksum = "065a29261d53ba54260972629f9ca6bffa69bac13cd1fed61420f7fa68b9f8bd" dependencies = [ "jobserver", "libc", + "once_cell", ] [[package]] @@ -1019,15 +1020,15 @@ dependencies = [ [[package]] name = "fastrand" -version = "2.0.2" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "658bd65b1cf4c852a3cc96f18a8ce7b5640f6b703f905c7d74532294c2a63984" +checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" [[package]] name = "fiat-crypto" -version = "0.2.7" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c007b1ae3abe1cb6f85a16305acd418b7ca6343b953633fee2b76d8f108b830f" +checksum = "38793c55593b33412e3ae40c2c9781ffaa6f438f6f8c10f24e71846fbd7ae01e" [[package]] name = "float-cmp" @@ -1233,9 +1234,9 @@ dependencies = [ [[package]] name = "hashbrown" -version = "0.14.3" +version = "0.14.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" +checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" [[package]] name = "heck" @@ -1443,7 +1444,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" dependencies = [ "equivalent", - "hashbrown 0.14.3", + "hashbrown 0.14.5", ] [[package]] @@ -1481,9 +1482,9 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" [[package]] name = "jobserver" -version = "0.1.30" +version = "0.1.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "685a7d121ee3f65ae4fddd72b25a04bb36b6af81bc0828f7d5434c0fe60fa3a2" +checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e" dependencies = [ "libc", ] @@ -1505,9 +1506,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "libc" -version = "0.2.153" +version = "0.2.154" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" +checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346" [[package]] name = "libsecp256k1" @@ -1565,9 +1566,9 @@ checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" [[package]] name = "lock_api" -version = "0.4.11" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" +checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" dependencies = [ "autocfg", "scopeguard", @@ -1865,9 +1866,9 @@ checksum = "30fceb411f9a12ff9222c5f824026be368ff15dc2f13468d850c7d3f502205d6" [[package]] name = "parking_lot" -version = "0.12.1" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" +checksum = "7e4af0ca4f6caed20e900d564c242b8e5d4903fdacf31d3daf527b66fe6f42fb" dependencies = [ "lock_api", "parking_lot_core", @@ -1875,15 +1876,15 @@ dependencies = [ [[package]] name = "parking_lot_core" -version = "0.9.9" +version = "0.9.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" +checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" dependencies = [ "cfg-if", "libc", - "redox_syscall 0.4.1", + "redox_syscall 0.5.1", "smallvec", - "windows-targets 0.48.5", + "windows-targets 0.52.5", ] [[package]] @@ -2161,11 +2162,11 @@ checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" [[package]] name = "redox_syscall" -version = "0.4.1" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" +checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.5.0", ] [[package]] @@ -2285,9 +2286,9 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.32" +version = "0.38.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89" +checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" dependencies = [ "bitflags 2.5.0", "errno", @@ -2387,18 +2388,18 @@ checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" [[package]] name = "serde" -version = "1.0.198" +version = "1.0.199" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9846a40c979031340571da2545a4e5b7c4163bdae79b301d5f86d03979451fcc" +checksum = "0c9f6e76df036c77cd94996771fb40db98187f096dd0b9af39c6c6e452ba966a" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.198" +version = "1.0.199" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e88edab869b01783ba905e7d0153f9fc1a6505a96e4ad3018011eedb838566d9" +checksum = "11bd257a6541e141e42ca6d24ae26f7714887b47e89aa739099104c7e4d3b7fc" dependencies = [ "proc-macro2", "quote", @@ -2498,9 +2499,9 @@ dependencies = [ [[package]] name = "signal-hook-registry" -version = "1.4.1" +version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" +checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" dependencies = [ "libc", ] @@ -2568,9 +2569,9 @@ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" [[package]] name = "socket2" -version = "0.5.6" +version = "0.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871" +checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" dependencies = [ "libc", "windows-sys 0.52.0", @@ -2758,18 +2759,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.58" +version = "1.0.59" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297" +checksum = "f0126ad08bff79f29fc3ae6a55cc72352056dfff61e3ff8bb7129476d44b23aa" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.58" +version = "1.0.59" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7" +checksum = "d1cd413b5d558b4c5bf3680e324a6fa5014e7b7c067a51e69dbdf47eb7148b66" dependencies = [ "proc-macro2", "quote", @@ -3325,9 +3326,9 @@ dependencies = [ [[package]] name = "unicode-width" -version = "0.1.11" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" +checksum = "68f5e5f3158ecfd4b8ff6fe086db7c8467a2dfdac97fe420f2b7c4aa97af66d6" [[package]] name = "unicode-xid" @@ -3521,11 +3522,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" [[package]] name = "winapi-util" -version = "0.1.6" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" +checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" dependencies = [ - "winapi", + "windows-sys 0.52.0", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 7a2d0c61..58f4ff80 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,14 +1,14 @@ [package] -authors = [ 'TON DEV SOLUTIONS LTD ' ] +authors = [ 'EverX Labs Ltd ' ] build = 'build.rs' -description = 'command line tool for TON blockchain' +description = 'command line tool for TVM blockchain' documentation = 'https://docs.everos.dev/' edition = '2021' homepage = 'https://docs.everos.dev/' keywords = [ - 'TON', + 'TVM', 'SDK', - 'smart contract', + 'smart-contract', 'everx-labs', 'solidity' ] @@ -16,7 +16,7 @@ license = 'Apache-2.0' name = 'ever-cli' readme = 'README.md' repository = 'https://github.com/everx-labs/ever-cli' -version = '0.36.7' +version = '0.36.8' default-run = 'ever-cli' [features] diff --git a/build.rs b/build.rs index ca1715b3..30d2113a 100644 --- a/build.rs +++ b/build.rs @@ -1,5 +1,5 @@ /* - * Copyright 2018-2021 TON DEV SOLUTIONS LTD. + * Copyright 2018-2021 EverX Labs Ltd. * * Licensed under the SOFTWARE EVALUATION License (the "License"); you may not use * this file except in compliance with the License. @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific TON DEV software governing permissions and + * See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ use std::process::Command; diff --git a/src/account.rs b/src/account.rs index fb86ae85..9951aee7 100644 --- a/src/account.rs +++ b/src/account.rs @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific TON DEV software governing permissions and +* See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ use std::sync::Arc; diff --git a/src/call.rs b/src/call.rs index d0c43ea6..1403ab16 100644 --- a/src/call.rs +++ b/src/call.rs @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific TON DEV software governing permissions and + * See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ use crate::config::Config; diff --git a/src/compile.rs b/src/compile.rs index 40ac4a50..29bda2cc 100644 --- a/src/compile.rs +++ b/src/compile.rs @@ -1,5 +1,5 @@ /* - * Copyright 2018-2021 TON DEV SOLUTIONS LTD. + * Copyright 2018-2021 EverX Labs Ltd. * * Licensed under the SOFTWARE EVALUATION License (the "License"); you may not use * this file except in compliance with the License. @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific TON DEV software governing permissions and + * See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ diff --git a/src/completion.rs b/src/completion.rs index a9ccafd5..1a549ea2 100644 --- a/src/completion.rs +++ b/src/completion.rs @@ -1,5 +1,5 @@ /* - * Copyright 2018-2021 TON DEV SOLUTIONS LTD. + * Copyright 2018-2021 EverX Labs Ltd. * * Licensed under the SOFTWARE EVALUATION License (the "License"); you may not use * this file except in compliance with the License. @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific TON DEV software governing permissions and + * See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ diff --git a/src/config.rs b/src/config.rs index 183779e9..449dba3f 100644 --- a/src/config.rs +++ b/src/config.rs @@ -1,5 +1,5 @@ /* - * Copyright 2018-2021 TON DEV SOLUTIONS LTD. + * Copyright 2018-2021 EverX Labs Ltd. * * Licensed under the SOFTWARE EVALUATION License (the "License"); you may not use * this file except in compliance with the License. @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific TON DEV software governing permissions and + * See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ use serde::{Deserialize, Serialize}; diff --git a/src/convert.rs b/src/convert.rs index cc361920..21173556 100644 --- a/src/convert.rs +++ b/src/convert.rs @@ -1,5 +1,5 @@ /* - * Copyright 2018-2021 TON DEV SOLUTIONS LTD. + * Copyright 2018-2021 EverX Labs Ltd. * * Licensed under the SOFTWARE EVALUATION License (the "License"); you may not use * this file except in compliance with the License. @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific TON DEV software governing permissions and + * See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ diff --git a/src/crypto.rs b/src/crypto.rs index db3eae03..d7ef073a 100644 --- a/src/crypto.rs +++ b/src/crypto.rs @@ -1,5 +1,5 @@ /* - * Copyright 2018-2021 TON DEV SOLUTIONS LTD. + * Copyright 2018-2021 EverX Labs Ltd. * * Licensed under the SOFTWARE EVALUATION License (the "License"); you may not use * this file except in compliance with the License. @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific TON DEV software governing permissions and + * See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ use crate::helpers::{create_client_local, read_keys, WORD_COUNT, HD_PATH, check_dir}; diff --git a/src/debot/callbacks.rs b/src/debot/callbacks.rs index 47c681ed..cae19584 100644 --- a/src/debot/callbacks.rs +++ b/src/debot/callbacks.rs @@ -1,5 +1,5 @@ /* -* Copyright 2018-2021 TON DEV SOLUTIONS LTD. +* Copyright 2018-2021 EverX Labs Ltd. * * Licensed under the SOFTWARE EVALUATION License (the "License"); you may not use * this file except in compliance with the License. @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific TON DEV software governing permissions and +* See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ use super::term_signing_box::TerminalSigningBox; diff --git a/src/debot/interfaces/mod.rs b/src/debot/interfaces/mod.rs index 2e963db0..4d83a74e 100644 --- a/src/debot/interfaces/mod.rs +++ b/src/debot/interfaces/mod.rs @@ -1,5 +1,5 @@ /* -* Copyright 2018-2021 TON DEV SOLUTIONS LTD. +* Copyright 2018-2021 EverX Labs Ltd. * * Licensed under the SOFTWARE EVALUATION License (the "License"); you may not use * this file except in compliance with the License. @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific TON DEV software governing permissions and +* See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ diff --git a/src/debot/mod.rs b/src/debot/mod.rs index eb5be4e1..55679bb0 100644 --- a/src/debot/mod.rs +++ b/src/debot/mod.rs @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific TON DEV software governing permissions and +* See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ mod callbacks; diff --git a/src/debot/term_browser.rs b/src/debot/term_browser.rs index dbb6e40f..3a190c8a 100644 --- a/src/debot/term_browser.rs +++ b/src/debot/term_browser.rs @@ -1,5 +1,5 @@ /* -* Copyright 2018-2021 TON DEV SOLUTIONS LTD. +* Copyright 2018-2021 EverX Labs Ltd. * * Licensed under the SOFTWARE EVALUATION License (the "License"); you may not use * this file except in compliance with the License. @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific TON DEV software governing permissions and +* See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ use super::term_signing_box::TerminalSigningBox; diff --git a/src/debug.rs b/src/debug.rs index e2d1fbbb..d7814a63 100644 --- a/src/debug.rs +++ b/src/debug.rs @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific TON DEV software governing permissions and + * See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ use crate::{contract_data_from_matches_or_config_alias, FullConfig, print_args, diff --git a/src/decode.rs b/src/decode.rs index b24e57b9..7bbcd0fb 100644 --- a/src/decode.rs +++ b/src/decode.rs @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific TON DEV software governing permissions and + * See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ use crate::{load_abi, print_args}; diff --git a/src/deploy.rs b/src/deploy.rs index 2d05d043..fef85ac8 100644 --- a/src/deploy.rs +++ b/src/deploy.rs @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific TON DEV software governing permissions and + * See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ use crate::helpers::{create_client_verbose, create_client_with_signature_id, load_abi, now_ms}; diff --git a/src/depool.rs b/src/depool.rs index d5921bb2..067af3f2 100644 --- a/src/depool.rs +++ b/src/depool.rs @@ -1,5 +1,5 @@ /* - * Copyright 2018-2021 TON DEV SOLUTIONS LTD. + * Copyright 2018-2021 EverX Labs Ltd. * * Licensed under the SOFTWARE EVALUATION License (the "License"); you may not use * this file except in compliance with the License. @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific TON DEV software governing permissions and + * See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ use crate::config::Config; diff --git a/src/depool_abi.rs b/src/depool_abi.rs index e7bd894c..3226d898 100644 --- a/src/depool_abi.rs +++ b/src/depool_abi.rs @@ -1,5 +1,5 @@ /* - * Copyright 2018-2021 TON DEV SOLUTIONS LTD. + * Copyright 2018-2021 EverX Labs Ltd. * * Licensed under the SOFTWARE EVALUATION License (the "License"); you may not use * this file except in compliance with the License. @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific TON DEV software governing permissions and + * See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ diff --git a/src/genaddr.rs b/src/genaddr.rs index 3886e204..1e2ce89a 100644 --- a/src/genaddr.rs +++ b/src/genaddr.rs @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific TON DEV software governing permissions and + * See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ use crate::config::Config; diff --git a/src/getconfig.rs b/src/getconfig.rs index f303cdb4..0300f72e 100644 --- a/src/getconfig.rs +++ b/src/getconfig.rs @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific TON DEV software governing permissions and + * See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ diff --git a/src/helpers.rs b/src/helpers.rs index b05ad080..f0d27cc5 100644 --- a/src/helpers.rs +++ b/src/helpers.rs @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific TON DEV software governing permissions and + * See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ use std::env; diff --git a/src/main.rs b/src/main.rs index a4dd40a3..fdd68916 100644 --- a/src/main.rs +++ b/src/main.rs @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific TON DEV software governing permissions and + * See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ diff --git a/src/message.rs b/src/message.rs index 2f45bf79..78d14744 100644 --- a/src/message.rs +++ b/src/message.rs @@ -1,5 +1,5 @@ /* - * Copyright 2018-2021 TON DEV SOLUTIONS LTD. + * Copyright 2018-2021 EverX Labs Ltd. * * Licensed under the SOFTWARE EVALUATION License (the "License"); you may not use * this file except in compliance with the License. @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific TON DEV software governing permissions and + * See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ diff --git a/src/multisig.rs b/src/multisig.rs index d41b1842..a79427cf 100644 --- a/src/multisig.rs +++ b/src/multisig.rs @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific TON DEV software governing permissions and + * See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ extern crate reqwest; diff --git a/src/replay.rs b/src/replay.rs index 3a940e04..51508a30 100644 --- a/src/replay.rs +++ b/src/replay.rs @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific TON DEV software governing permissions and + * See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ diff --git a/src/run.rs b/src/run.rs index 452122f6..e7e19cda 100644 --- a/src/run.rs +++ b/src/run.rs @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific TON DEV software governing permissions and + * See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ diff --git a/src/sendfile.rs b/src/sendfile.rs index cdcf1222..5a8ffc9b 100644 --- a/src/sendfile.rs +++ b/src/sendfile.rs @@ -1,5 +1,5 @@ /* - * Copyright 2018-2021 TON DEV SOLUTIONS LTD. + * Copyright 2018-2021 EverX Labs Ltd. * * Licensed under the SOFTWARE EVALUATION License (the "License"); you may not use * this file except in compliance with the License. @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific TON DEV software governing permissions and + * See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ use crate::helpers::create_client_verbose; diff --git a/src/test.rs b/src/test.rs index 50faa75a..608e715d 100644 --- a/src/test.rs +++ b/src/test.rs @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific TON DEV software governing permissions and + * See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ diff --git a/src/voting.rs b/src/voting.rs index c2ce4f54..578e0da6 100644 --- a/src/voting.rs +++ b/src/voting.rs @@ -1,5 +1,5 @@ /* - * Copyright 2018-2021 TON DEV SOLUTIONS LTD. + * Copyright 2018-2021 EverX Labs Ltd. * * Licensed under the SOFTWARE EVALUATION License (the "License"); you may not use * this file except in compliance with the License. @@ -7,7 +7,7 @@ * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific TON DEV software governing permissions and + * See the License for the specific EVERX DEV software governing permissions and * limitations under the License. */ use crate::config::Config; From 1f5332c6f015be5e7e0824da7fd39aeb4e4de424 Mon Sep 17 00:00:00 2001 From: tonjen Date: Tue, 30 Apr 2024 23:22:13 +0000 Subject: [PATCH 2/2] Preparing to merge with the master #nolog --- Cargo.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 68ce48cd..4a19366c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -939,7 +939,7 @@ dependencies = [ [[package]] name = "ever-cli" -version = "0.36.7" +version = "0.36.8" dependencies = [ "assert_cmd", "async-trait",