-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
29 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
name = "pubnub" | ||
version = "0.4.0" | ||
edition = "2021" | ||
license = "MIT" | ||
license-file = "LICENSE" | ||
authors = ["PubNub <[email protected]>"] | ||
description = "PubNub SDK for Rust" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -222,4 +222,24 @@ [email protected]. | |
|
||
## License | ||
|
||
This project is licensed under the [MIT license](https://github.com/pubnub/rust/blob/master/LICENSE). | ||
This project is licensed under the [PubNub Software Development Kit License Agreement](https://github.com/pubnub/rust/blob/master/LICENSE). | ||
|
||
### cargo-deny | ||
|
||
Currently our license is not added into the [SPDX license list](https://spdx.org/licenses/) so `cargo-deny` will raise an issue about it. | ||
If you agree on our license you can simply satisfy it by following onfiguration: | ||
```toml | ||
[licenses] | ||
allow = [ | ||
#... | ||
"LicenseRef-PubNubSoftwareDevelopmentKitLicenseAgreement" | ||
] | ||
|
||
[[licenses.clarify]] | ||
name = "pubnub" | ||
expression = "LicenseRef-PubNubSoftwareDevelopmentKitLicenseAgreement" | ||
license-files = [ | ||
{ path = "LICENSE", hash = 0x48826f13 }, | ||
] | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters