refactor: depend on renamed chain-module-sdk
Signed-off-by: flemming-it <sf@flemming.it>
This commit is contained in:
parent
ec6708e596
commit
3485a51941
3 changed files with 15 additions and 15 deletions
24
Cargo.lock
generated
24
Cargo.lock
generated
|
|
@ -42,17 +42,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
||||
|
||||
[[package]]
|
||||
name = "equivalent"
|
||||
version = "1.0.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
||||
|
||||
[[package]]
|
||||
name = "fai-module-sdk"
|
||||
name = "chain-module-sdk"
|
||||
version = "0.1.2"
|
||||
source = "git+https://git.flemming.ai/fai/module-sdk-rust.git?branch=main#a5da67d0a378a351faa6752f323409e1cb28f1b2"
|
||||
source = "git+https://git.flemming.ai/fai/chain-module-sdk-rust.git?branch=main#98e98e9371f7409560a1ef08bc0923d9a2506449"
|
||||
dependencies = [
|
||||
"fai-module-sdk-macros",
|
||||
"chain-module-sdk-macros",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"thiserror",
|
||||
|
|
@ -60,15 +54,21 @@ dependencies = [
|
|||
]
|
||||
|
||||
[[package]]
|
||||
name = "fai-module-sdk-macros"
|
||||
name = "chain-module-sdk-macros"
|
||||
version = "0.1.2"
|
||||
source = "git+https://git.flemming.ai/fai/module-sdk-rust.git?branch=main#a5da67d0a378a351faa6752f323409e1cb28f1b2"
|
||||
source = "git+https://git.flemming.ai/fai/chain-module-sdk-rust.git?branch=main#98e98e9371f7409560a1ef08bc0923d9a2506449"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"syn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "equivalent"
|
||||
version = "1.0.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
||||
|
||||
[[package]]
|
||||
name = "hashbrown"
|
||||
version = "0.14.5"
|
||||
|
|
@ -274,7 +274,7 @@ dependencies = [
|
|||
name = "text_anonymize"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"fai-module-sdk",
|
||||
"chain-module-sdk",
|
||||
"regex",
|
||||
"serde",
|
||||
"serde_json",
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ rust-version = "1.85"
|
|||
crate-type = ["cdylib", "rlib"]
|
||||
|
||||
[dependencies]
|
||||
fai-module-sdk = { git = "https://git.flemming.ai/fai/module-sdk-rust.git", branch = "main" }
|
||||
chain-module-sdk = { git = "https://git.flemming.ai/fai/chain-module-sdk-rust.git", branch = "main" }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
# Regex without the unicode-perl / unicode-script / unicode-segment
|
||||
|
|
|
|||
|
|
@ -69,8 +69,8 @@
|
|||
|
||||
#![allow(clippy::result_large_err)]
|
||||
|
||||
use fai_module_sdk::prelude::*;
|
||||
use fai_module_sdk::Payload;
|
||||
use chain_module_sdk::prelude::*;
|
||||
use chain_module_sdk::Payload;
|
||||
use regex::Regex;
|
||||
use serde::Serialize;
|
||||
use std::collections::HashMap;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue