-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
133 lines (126 loc) · 3.81 KB
/
Cargo.toml
File metadata and controls
133 lines (126 loc) · 3.81 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
[package]
name = "rustic-witcher"
version = "0.1.0"
edition = "2024"
resolver = "2"
[workspace]
members = [
"rustic-anonymization-config",
"rustic-faker-types",
"rustic-duration",
"rustic-transformator",
"rustic-config-generator-cli",
"rustic-shell",
"rustic-anonymization-operator",
"rustic-cdc-operator",
"rustic-target-db",
"rustic-s3-config",
"rustic-local-data-importer-cli",
"rustic-mongo-buddy",
"rustic-base-transformations",
"rustic-faker-transformations",
"rustic-whole-table-transformator",
"rustic-bg-whole-table-transformator",
"rustic-result-validator",
]
[workspace.dependencies]
aws-config = { version = "1.6", features = ["behavior-version-latest"] }
aws-sdk-s3 = { version = "1.85", features = ["behavior-version-latest"] }
tokio = { version = "1", features = ["full"] }
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
colored = "3.0.0"
polars = { version = "0.48.1", features = [
"aws",
"dtype-decimal",
"json",
"lazy",
"new_streaming",
"parquet",
"streaming",
"strings",
"timezones",
"is_in",
] }
serde_json = { version = "1.0", features = [
"preserve_order",
"arbitrary_precision",
] }
serde = { version = "1.0", features = ["derive"] }
async-trait = "0.1"
indexmap = { version = "2.9.0", features = ["serde"] }
rand = "0.9.1"
toml = "0.9"
fake = { version = "4.0.0", features = ["derive", "uuid"] }
tracing = "0.1"
tracing-subscriber = "0.3"
rand_seeder = "0.4.0"
futures = "0.3.31"
dms-cdc-operator = "0.1.26"
deadpool-postgres = "0.14.1"
pretty_assertions = "1.4.1"
strum = { version = "0.27", features = ["derive"] }
cliclack = "0.3.5"
ctrlc = "3.4"
console = "0.16.2"
bon = "3.3"
rustic-faker-types = { path = "rustic-faker-types" }
rustic-anonymization-config = { path = "rustic-anonymization-config" }
rustic-duration = { path = "rustic-duration" }
rustic-transformator = { path = "rustic-transformator" }
rustic-base-transformations = { path = "rustic-base-transformations" }
rustic-faker-transformations = { path = "rustic-faker-transformations" }
rustic-shell = { path = "rustic-shell" }
rustic-anonymization-operator = { path = "rustic-anonymization-operator", features = [
"bg_source",
] }
rustic-cdc-operator = { path = "rustic-cdc-operator" }
rustic-target-db = { path = "rustic-target-db" }
rustic-s3-config = { path = "rustic-s3-config" }
rustic-whole-table-transformator = { path = "rustic-whole-table-transformator" }
rustic-bg-whole-table-transformator = { path = "rustic-bg-whole-table-transformator" }
rustic-result-validator = { path = "rustic-result-validator" }
auto-allocator = "*"
[dependencies]
aws-config.workspace = true
aws-sdk-s3.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
tokio.workspace = true
anyhow.workspace = true
clap.workspace = true
colored.workspace = true
polars.workspace = true
serde_json.workspace = true
serde.workspace = true
async-trait.workspace = true
indexmap.workspace = true
rand.workspace = true
toml.workspace = true
fake.workspace = true
rand_seeder.workspace = true
futures.workspace = true
dms-cdc-operator.workspace = true
deadpool-postgres.workspace = true
bon.workspace = true
auto-allocator.workspace = true
rustic-faker-types.workspace = true
rustic-anonymization-config.workspace = true
rustic-duration.workspace = true
rustic-transformator.workspace = true
rustic-shell.workspace = true
rustic-anonymization-operator = { workspace = true, features = ["bg_source"] }
rustic-cdc-operator.workspace = true
rustic-target-db.workspace = true
rustic-s3-config.workspace = true
rustic-result-validator.workspace = true
[dev-dependencies]
pretty_assertions.workspace = true
[profile.dev]
split-debuginfo = "unpacked"
[[bin]]
name = "rustic-witcher"
path = "src/main.rs"
[[bin]]
name = "rustic-mongo-buddy"
path = "rustic-mongo-buddy/src/main.rs"