forked from Mooncake-Labs/moonlink
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
142 lines (138 loc) · 4.72 KB
/
Copy pathCargo.toml
File metadata and controls
142 lines (138 loc) · 4.72 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
134
135
136
137
138
139
140
141
142
[workspace]
members = [
"src/moonlink",
"src/moonlink_backend",
"src/moonlink_connectors",
"src/moonlink_datafusion",
"src/moonlink_error",
"src/moonlink_metadata_store",
"src/moonlink_proto",
"src/moonlink_rpc",
"src/moonlink_service",
"src/moonlink_table_metadata",
]
resolver = "2"
[workspace.package]
version = "0.0.1"
edition = "2021"
license = "LicenseRef-BSL-1.1"
[workspace.dependencies]
anyhow = "1.0"
apache-avro = "0.20"
arrow = { version = "56", default-features = false, features = [
"canonical_extension_types",
] }
arrow-array = "56"
arrow-buffer = "56"
arrow-ipc = "56"
arrow-schema = { version = "56", features = ["serde"] }
async-stream = "0.3"
async-trait = "0.1"
backon = "1.6"
bincode = { version = "2", features = ["serde"] }
bitstream-io = "4.9"
bytes = "1.0"
chrono = { version = "0.4", default-features = false }
clap = { version = "4", features = ["derive"] }
const_format = "0.2"
crc32fast = "1"
datafusion = "50"
datafusion-cli = "50"
deltalake = { version = "0.29", features = ["deltalake-aws", "deltalake-gcp"] }
fastbloom = "0.14"
futures = { version = "0.3", default-features = false }
hashbrown = "0.16"
iceberg = { git = "https://github.com/apache/iceberg-rust", rev = "4a6ea15a7dd73e7c68b0a24441820b13bdd22a92", default-features = false, features = [
"storage-fs",
] }
iceberg-catalog-glue = { git = "https://github.com/apache/iceberg-rust", rev = "4a6ea15a7dd73e7c68b0a24441820b13bdd22a92" }
iceberg-catalog-rest = { git = "https://github.com/apache/iceberg-rust", rev = "4a6ea15a7dd73e7c68b0a24441820b13bdd22a92" }
itertools = "0.14"
lru = "0.16"
moka = { version = "0.12", features = ["future"] }
moonlink = { path = "src/moonlink" }
moonlink_backend = { path = "src/moonlink_backend" }
moonlink_connectors = { path = "src/moonlink_connectors" }
moonlink_datafusion = { path = "src/moonlink_datafusion" }
moonlink_error = { path = "src/moonlink_error" }
moonlink_metadata_store = { path = "src/moonlink_metadata_store" }
moonlink_proto = { path = "src/moonlink_proto" }
moonlink_rpc = { path = "src/moonlink_rpc" }
moonlink_service = { path = "src/moonlink_service" }
moonlink_table_metadata = { path = "src/moonlink_table_metadata" }
more-asserts = "0.3"
multimap = { version = "0.10", default-features = false }
native-tls = "0.2.14"
nix = { version = "0.30", default-features = false, features = ["fs"] }
num-bigint = "0.4"
num-traits = "0.2"
object_store = "0.12"
opendal = { version = "0.54", default-features = false, features = ["layers-throttle"] }
opentelemetry = { version = "0.31", default-features = false, features = [
"trace",
"metrics",
] }
opentelemetry-otlp = { version = "0.31", default-features = false, features = [
"reqwest-blocking-client",
"http-proto",
"trace",
"metrics",
] }
opentelemetry-stdout = { version = "0.31", default-features = false, features = [
"trace",
"metrics",
] }
opentelemetry_sdk = { version = "0.31", default-features = false, features = [
"trace",
"metrics",
] }
parquet = { version = "56", default-features = false, features = [
"arrow",
"async",
"arrow_canonical_extension_types",
] }
paste = "1"
postgres-native-tls = { git = "https://github.com/Mooncake-labs/rust-postgres.git", rev = "14c8e599f5551a8caa96ff5023685a6f537a1455" }
postgres-replication = { git = "https://github.com/Mooncake-labs/rust-postgres.git", rev = "14c8e599f5551a8caa96ff5023685a6f537a1455" }
postgres-types = { git = "https://github.com/Mooncake-Labs/rust-postgres.git", rev = "14c8e599f5551a8caa96ff5023685a6f537a1455", features = [
"with-serde_json-1",
] }
prost = "0.14"
prost-types = "0.14"
rand = "0.9"
regex = "1.12"
reqwest = { version = "0.12", features = ["json"] }
roaring = "0.11"
rstest = "0.26"
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_json = "1"
serial_test = "3.0"
smallvec = "1.15"
tempfile = "3"
thiserror = "2"
tokio = { version = "1.48", default-features = false, features = [
"fs",
"io-util",
"macros",
"net",
"rt-multi-thread",
"signal",
"sync",
"time",
"tracing",
] }
tokio-bitstream-io = "0.0"
tokio-postgres = { git = "https://github.com/Mooncake-labs/rust-postgres.git", rev = "14c8e599f5551a8caa96ff5023685a6f537a1455", features = [
"with-serde_json-1",
] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "chrono"] }
typed-builder = "0.23"
url = "2.5"
uuid = { version = "1.18", default-features = false, features = ["v4"] }
[profile.release-with-debug]
inherits = "release"
debug = true
[patch.crates-io]
postgres-types = { git = "https://github.com/Mooncake-Labs/rust-postgres.git", rev = "14c8e599f5551a8caa96ff5023685a6f537a1455" }
postgres-protocol = { git = "https://github.com/Mooncake-Labs/rust-postgres.git", rev = "14c8e599f5551a8caa96ff5023685a6f537a1455" }