Browse Source

Adding `arrow-schema` as dependency

tags/v0.2.5-alpha
haixuanTao 2 years ago
parent
commit
6b910ab619
6 changed files with 11 additions and 1 deletions
  1. +5
    -0
      Cargo.lock
  2. +1
    -0
      apis/python/operator/Cargo.toml
  3. +1
    -0
      apis/rust/node/Cargo.toml
  4. +1
    -0
      binaries/daemon/Cargo.toml
  5. +1
    -0
      binaries/runtime/Cargo.toml
  6. +2
    -1
      libraries/message/Cargo.toml

+ 5
- 0
Cargo.lock View File

@@ -1416,6 +1416,7 @@ dependencies = [
name = "dora-daemon"
version = "0.2.4"
dependencies = [
"arrow-schema",
"async-trait",
"bincode",
"clap 3.2.25",
@@ -1475,6 +1476,7 @@ dependencies = [
"arrow-schema",
"capnp",
"capnpc",
"eyre",
"serde",
"uhlc",
]
@@ -1495,6 +1497,7 @@ name = "dora-node-api"
version = "0.2.4"
dependencies = [
"arrow",
"arrow-schema",
"bincode",
"capnp",
"dora-core",
@@ -1589,6 +1592,7 @@ name = "dora-operator-api-python"
version = "0.2.4"
dependencies = [
"arrow",
"arrow-schema",
"dora-node-api",
"eyre",
"flume",
@@ -1652,6 +1656,7 @@ dependencies = [
name = "dora-runtime"
version = "0.2.4"
dependencies = [
"arrow-schema",
"clap 4.3.9",
"dora-core",
"dora-download",


+ 1
- 0
apis/python/operator/Cargo.toml View File

@@ -16,3 +16,4 @@ eyre = "0.6"
serde_yaml = "0.8.23"
flume = "0.10.14"
arrow = { version = "45.0.0", features = ["pyarrow"] }
arrow-schema = "45.0.0"

+ 1
- 0
apis/rust/node/Cargo.toml View File

@@ -27,6 +27,7 @@ bincode = "1.3.3"
shared_memory_extended = "0.13.0"
dora-tracing = { workspace = true, optional = true }
arrow = "45.0.0"
arrow-schema = "45.0.0"
futures = "0.3.28"
futures-concurrency = "7.3.0"



+ 1
- 0
binaries/daemon/Cargo.toml View File

@@ -37,3 +37,4 @@ shared-memory-server = { workspace = true }
ctrlc = "3.2.5"
bincode = "1.3.3"
async-trait = "0.1.64"
arrow-schema = "45.0.0"

+ 1
- 0
binaries/runtime/Cargo.toml View File

@@ -36,6 +36,7 @@ flume = "0.10.14"
clap = { version = "4.0.3", features = ["derive"] }
tracing-opentelemetry = { version = "0.18.0", optional = true }
pythonize = { version = "0.19.0", optional = true }
arrow-schema = "45.0.0"

[features]
default = ["tracing"]


+ 2
- 1
libraries/message/Cargo.toml View File

@@ -14,10 +14,11 @@ build = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
arrow-schema = { version = "45.0.0", features = ["serde"] }
capnp = { version = "0.14.11", features = ["unaligned"] }
uhlc = "0.5.1"
serde = { version = "1.0.136", features = ["derive"] }
arrow-schema = { version = "45.0.0", features = ["serde"] }
eyre = "0.6.8"

[build-dependencies]
capnpc = "0.14"

Loading…
Cancel
Save