Browse Source

Move the `api.h` header file to `api` subfolder

Organize the `api` folder by language.
tags/v0.0.0-test.4
Philipp Oppermann 3 years ago
parent
commit
ef306a0779
16 changed files with 8 additions and 7 deletions
  1. +3
    -3
      Cargo.toml
  2. +0
    -0
      api/c/operator/api.h
  3. +0
    -0
      api/rust/node/Cargo.toml
  4. +0
    -0
      api/rust/node/src/communication.rs
  5. +0
    -0
      api/rust/node/src/config.rs
  6. +0
    -0
      api/rust/node/src/lib.rs
  7. +0
    -0
      api/rust/operator/Cargo.toml
  8. +0
    -0
      api/rust/operator/macros/Cargo.toml
  9. +0
    -0
      api/rust/operator/macros/src/lib.rs
  10. +0
    -0
      api/rust/operator/src/lib.rs
  11. +0
    -0
      api/rust/operator/src/raw.rs
  12. +1
    -1
      common/Cargo.toml
  13. +1
    -1
      coordinator/Cargo.toml
  14. +1
    -1
      runtime/Cargo.toml
  15. +1
    -0
      runtime/examples/c-operator/.gitignore
  16. +1
    -1
      runtime/examples/example-operator/Cargo.toml

+ 3
- 3
Cargo.toml View File

@@ -7,9 +7,9 @@ edition = "2021"

[workspace]
members = [
"api/node",
"api/operator",
"api/operator/macros",
"api/rust/node",
"api/rust/operator",
"api/rust/operator/macros",
"coordinator",
"common",
"runtime",


runtime/examples/c-operator/api.h → api/c/operator/api.h View File


api/node/Cargo.toml → api/rust/node/Cargo.toml View File


api/node/src/communication.rs → api/rust/node/src/communication.rs View File


api/node/src/config.rs → api/rust/node/src/config.rs View File


api/node/src/lib.rs → api/rust/node/src/lib.rs View File


api/operator/Cargo.toml → api/rust/operator/Cargo.toml View File


api/operator/macros/Cargo.toml → api/rust/operator/macros/Cargo.toml View File


api/operator/macros/src/lib.rs → api/rust/operator/macros/src/lib.rs View File


api/operator/src/lib.rs → api/rust/operator/src/lib.rs View File


api/operator/src/raw.rs → api/rust/operator/src/raw.rs View File


+ 1
- 1
common/Cargo.toml View File

@@ -6,6 +6,6 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
dora-node-api = { version = "0.1.0", path = "../api/node" }
dora-node-api = { version = "0.1.0", path = "../api/rust/node" }
eyre = "0.6.8"
serde = { version = "1.0.136", features = ["derive"] }

+ 1
- 1
coordinator/Cargo.toml View File

@@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
bincode = "1.3.3"
dora-node-api = { path = "../api/node" }
dora-node-api = { path = "../api/rust/node" }
eyre = "0.6.7"
futures = "0.3.21"
serde = { version = "1.0.136", features = ["derive"] }


+ 1
- 1
runtime/Cargo.toml View File

@@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
clap = { version = "3.1.12", features = ["derive"] }
dora-node-api = { path = "../api/node" }
dora-node-api = { path = "../api/rust/node" }
dora-common = { version = "0.1.0", path = "../common" }
eyre = "0.6.8"
futures = "0.3.21"


+ 1
- 0
runtime/examples/c-operator/.gitignore View File

@@ -1,2 +1,3 @@
operator.o
operator.so
api.h

+ 1
- 1
runtime/examples/example-operator/Cargo.toml View File

@@ -9,4 +9,4 @@ edition = "2021"
crate-type = ["cdylib"]

[dependencies]
dora-operator-api = { path = "../../../api/operator" }
dora-operator-api = { path = "../../../api/rust/operator" }

Loading…
Cancel
Save