diff --git a/Cargo.lock b/Cargo.lock index 4f122dd7..60d02932 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -773,10 +773,6 @@ dependencies = [ "pyo3", ] -[[package]] -name = "dora-rs" -version = "0.1.0" - [[package]] name = "dora-runtime" version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml index 5ea71bfd..d7bfae98 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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] diff --git a/NOTICE.md b/NOTICE.md new file mode 100644 index 00000000..e09a510e --- /dev/null +++ b/NOTICE.md @@ -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 ). 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. diff --git a/api/python/binding/Cargo.toml b/api/python/binding/Cargo.toml index 7704cf25..49dacc3e 100644 --- a/api/python/binding/Cargo.toml +++ b/api/python/binding/Cargo.toml @@ -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 diff --git a/api/rust/node/Cargo.toml b/api/rust/node/Cargo.toml index 6b6cd5e7..4af1a161 100644 --- a/api/rust/node/Cargo.toml +++ b/api/rust/node/Cargo.toml @@ -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 diff --git a/api/rust/operator/Cargo.toml b/api/rust/operator/Cargo.toml index 0a507413..147d41c4 100644 --- a/api/rust/operator/Cargo.toml +++ b/api/rust/operator/Cargo.toml @@ -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 diff --git a/api/rust/operator/macros/Cargo.toml b/api/rust/operator/macros/Cargo.toml index 13764a93..db866a83 100644 --- a/api/rust/operator/macros/Cargo.toml +++ b/api/rust/operator/macros/Cargo.toml @@ -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 diff --git a/common/Cargo.toml b/common/Cargo.toml index 70908f08..bc463219 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -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 diff --git a/coordinator/Cargo.toml b/coordinator/Cargo.toml index 4729583c..68106f0e 100644 --- a/coordinator/Cargo.toml +++ b/coordinator/Cargo.toml @@ -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 diff --git a/message/Cargo.toml b/message/Cargo.toml index dde9af01..fc079424 100644 --- a/message/Cargo.toml +++ b/message/Cargo.toml @@ -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 diff --git a/metrics/Cargo.toml b/metrics/Cargo.toml index dd3f94c5..b1ff7339 100644 --- a/metrics/Cargo.toml +++ b/metrics/Cargo.toml @@ -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 diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index d795c6aa..466e76f6 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -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 diff --git a/runtime/examples/example-operator/Cargo.toml b/runtime/examples/example-operator/Cargo.toml index a6f3b372..ff9dd4d5 100644 --- a/runtime/examples/example-operator/Cargo.toml +++ b/runtime/examples/example-operator/Cargo.toml @@ -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 diff --git a/src/lib.rs b/src/lib.rs deleted file mode 100644 index 8b137891..00000000 --- a/src/lib.rs +++ /dev/null @@ -1 +0,0 @@ - diff --git a/tracing/Cargo.toml b/tracing/Cargo.toml index 8bbb4cb7..55c968f0 100644 --- a/tracing/Cargo.toml +++ b/tracing/Cargo.toml @@ -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 diff --git a/zenoh-logger/Cargo.toml b/zenoh-logger/Cargo.toml index 3b92e55b..4f4c26c8 100644 --- a/zenoh-logger/Cargo.toml +++ b/zenoh-logger/Cargo.toml @@ -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