Browse Source

Merge pull request #33 from futurewei-tech/licensing

Set license metadata for all crates and create NOTICE.md
tags/v0.0.0-test.4
Philipp Oppermann GitHub 3 years ago
parent
commit
b4717c12df
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
16 changed files with 19 additions and 14 deletions
  1. +0
    -4
      Cargo.lock
  2. +0
    -9
      Cargo.toml
  3. +7
    -0
      NOTICE.md
  4. +1
    -0
      api/python/binding/Cargo.toml
  5. +1
    -0
      api/rust/node/Cargo.toml
  6. +1
    -0
      api/rust/operator/Cargo.toml
  7. +1
    -0
      api/rust/operator/macros/Cargo.toml
  8. +1
    -0
      common/Cargo.toml
  9. +1
    -0
      coordinator/Cargo.toml
  10. +1
    -0
      message/Cargo.toml
  11. +1
    -0
      metrics/Cargo.toml
  12. +1
    -0
      runtime/Cargo.toml
  13. +1
    -0
      runtime/examples/example-operator/Cargo.toml
  14. +0
    -1
      src/lib.rs
  15. +1
    -0
      tracing/Cargo.toml
  16. +1
    -0
      zenoh-logger/Cargo.toml

+ 0
- 4
Cargo.lock View File

@@ -773,10 +773,6 @@ dependencies = [
"pyo3",
]

[[package]]
name = "dora-rs"
version = "0.1.0"

[[package]]
name = "dora-runtime"
version = "0.1.0"


+ 0
- 9
Cargo.toml View File

@@ -1,10 +1,3 @@
[package]
name = "dora-rs"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[workspace]
members = [
"api/rust/node",
@@ -20,5 +13,3 @@ members = [
"runtime/examples/example-operator",
"zenoh-logger",
]

[dependencies]

+ 7
- 0
NOTICE.md View File

@@ -0,0 +1,7 @@
## Copyright

All content is the property of the respective authors or their employers. For more information regarding authorship of content, please consult the listed source code repository logs.

## License

This project is licensed under the Apache License, Version 2.0 ([LICENSE](LICENSE) or <http://www.apache.org/licenses/LICENSE-2.0>). Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.

+ 1
- 0
api/python/binding/Cargo.toml View File

@@ -2,6 +2,7 @@
name = "dora-python-binding"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html



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

@@ -2,6 +2,7 @@
name = "dora-node-api"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html



+ 1
- 0
api/rust/operator/Cargo.toml View File

@@ -2,6 +2,7 @@
name = "dora-operator-api"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html



+ 1
- 0
api/rust/operator/macros/Cargo.toml View File

@@ -2,6 +2,7 @@
name = "dora-operator-api-macros"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html



+ 1
- 0
common/Cargo.toml View File

@@ -2,6 +2,7 @@
name = "dora-common"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html



+ 1
- 0
coordinator/Cargo.toml View File

@@ -2,6 +2,7 @@
name = "dora-coordinator"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html



+ 1
- 0
message/Cargo.toml View File

@@ -2,6 +2,7 @@
name = "dora-message"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html



+ 1
- 0
metrics/Cargo.toml View File

@@ -2,6 +2,7 @@
name = "dora-metrics"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html



+ 1
- 0
runtime/Cargo.toml View File

@@ -2,6 +2,7 @@
name = "dora-runtime"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html



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

@@ -2,6 +2,7 @@
name = "example-operator"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html



+ 0
- 1
src/lib.rs View File

@@ -1 +0,0 @@


+ 1
- 0
tracing/Cargo.toml View File

@@ -2,6 +2,7 @@
name = "dora-tracing"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html



+ 1
- 0
zenoh-logger/Cargo.toml View File

@@ -2,6 +2,7 @@
name = "zenoh-logger"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html



Loading…
Cancel
Save