Skip to content

Commit a58670e

Browse files
committed
Add more license files and cargo details
1 parent d128633 commit a58670e

File tree

8 files changed

+115
-1
lines changed

8 files changed

+115
-1
lines changed

client/Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
name = "temporal-client"
33
version = "0.1.0"
44
edition = "2021"
5+
authors = ["Spencer Judge <[email protected]>"]
6+
license-file = "LICENSE.txt"
7+
description = "Clients for interacting with Temporal Clusters"
8+
homepage = "https://temporal.io/"
9+
repository = "https://github.com/temporalio/sdk-core"
10+
keywords = ["temporal", "workflow"]
11+
categories = ["development-tools"]
512

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

client/LICENSE.txt

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Temporal Core SDK
2+
3+
The MIT License
4+
5+
Copyright (c) 2021 Temporal Technologies, Inc. All Rights Reserved
6+
7+
Permission is hereby granted, free of charge, to any person obtaining a copy
8+
of this software and associated documentation files (the "Software"), to deal
9+
in the Software without restriction, including without limitation the rights
10+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+
copies of the Software, and to permit persons to whom the Software is
12+
furnished to do so, subject to the following conditions:
13+
14+
The above copyright notice and this permission notice shall be included in all
15+
copies or substantial portions of the Software.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23+
SOFTWARE.

client/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,8 @@ impl ServerGateway {
509509
}
510510
}
511511

512-
/// This trait provides higher-level friendlier interaction with the server
512+
/// This trait provides higher-level friendlier interaction with the server.
513+
/// See the [WorkflowService] trait for a lower-level client.
513514
#[cfg_attr(any(feature = "mocks", test), mockall::automock)]
514515
#[async_trait::async_trait]
515516
pub trait ServerGatewayApis {

core-api/Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
name = "temporal-sdk-core-api"
33
version = "0.1.0"
44
edition = "2021"
5+
authors = ["Spencer Judge <[email protected]>"]
6+
license-file = "LICENSE.txt"
7+
description = "Interface definitions for the Temporal Core SDK"
8+
homepage = "https://temporal.io/"
9+
repository = "https://github.com/temporalio/sdk-core"
10+
keywords = ["temporal", "workflow"]
11+
categories = ["development-tools"]
512

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

core-api/LICENSE.txt

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Temporal Core SDK
2+
3+
The MIT License
4+
5+
Copyright (c) 2021 Temporal Technologies, Inc. All Rights Reserved
6+
7+
Permission is hereby granted, free of charge, to any person obtaining a copy
8+
of this software and associated documentation files (the "Software"), to deal
9+
in the Software without restriction, including without limitation the rights
10+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+
copies of the Software, and to permit persons to whom the Software is
12+
furnished to do so, subject to the following conditions:
13+
14+
The above copyright notice and this permission notice shall be included in all
15+
copies or substantial portions of the Software.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23+
SOFTWARE.

core/LICENSE.txt

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Temporal Core SDK
2+
3+
The MIT License
4+
5+
Copyright (c) 2021 Temporal Technologies, Inc. All Rights Reserved
6+
7+
Permission is hereby granted, free of charge, to any person obtaining a copy
8+
of this software and associated documentation files (the "Software"), to deal
9+
in the Software without restriction, including without limitation the rights
10+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+
copies of the Software, and to permit persons to whom the Software is
12+
furnished to do so, subject to the following conditions:
13+
14+
The above copyright notice and this permission notice shall be included in all
15+
copies or substantial portions of the Software.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23+
SOFTWARE.

sdk/Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
name = "temporal-sdk"
33
version = "0.1.0-alpha.1"
44
edition = "2021"
5+
authors = ["Spencer Judge <[email protected]>"]
6+
license-file = "LICENSE.txt"
7+
description = "Temporal Rust SDK"
8+
homepage = "https://temporal.io/"
9+
repository = "https://github.com/temporalio/sdk-core"
10+
keywords = ["temporal", "workflow"]
11+
categories = ["development-tools"]
512

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

sdk/LICENSE.txt

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Temporal Core SDK
2+
3+
The MIT License
4+
5+
Copyright (c) 2021 Temporal Technologies, Inc. All Rights Reserved
6+
7+
Permission is hereby granted, free of charge, to any person obtaining a copy
8+
of this software and associated documentation files (the "Software"), to deal
9+
in the Software without restriction, including without limitation the rights
10+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+
copies of the Software, and to permit persons to whom the Software is
12+
furnished to do so, subject to the following conditions:
13+
14+
The above copyright notice and this permission notice shall be included in all
15+
copies or substantial portions of the Software.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23+
SOFTWARE.

0 commit comments

Comments
 (0)