Skip to content

Commit af850b1

Browse files
committed
feat: fork updates
- add IDE specific to gitignore - add me as an author of the crates - add missing new lines in several files - update links to the fork
1 parent ac0be65 commit af850b1

File tree

9 files changed

+21
-22
lines changed

9 files changed

+21
-22
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,3 @@ Describe your issue in detail.
2020
dynomite version:
2121

2222
rustc version:
23-

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ about: Suggest a new idea for dynomite
99
<!-- Describe the feature you'd like. -->
1010

1111
#### 💻 Basic example
12-
<!-- Include a basic code example if possible. Omit this section if not applicable. -->
12+
<!-- Include a basic code example if possible. Omit this section if not applicable. -->

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ Closes: #xxx
1414

1515
#### How did you verify your change:
1616

17-
#### What (if anything) would need to be called out in the CHANGELOG for the next release:
17+
#### What (if anything) would need to be called out in the CHANGELOG for the next release:

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
1+
# Rust
22
target/
33
**/*.rs.bk
44
Cargo.lock
5+
6+
# IDE
7+
.idea

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[workspace]
2-
members = ["dynomite", "dynomite-derive"]
2+
members = ["dynomite", "dynomite-derive"]

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2018-2020 Doug Tangren
1+
Copyright (c) 2018-2020 Doug Tangren, 2021 Alexander Zaitsev
22

33
Permission is hereby granted, free of charge, to any person obtaining
44
a copy of this software and associated documentation files (the

README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,15 @@
1111
</p>
1212

1313
<div align="center">
14-
<a alt="GitHub Actions" href="https://github.com/softprops/dynomite/actions">
15-
<img src="https://github.com/softprops/dynomite/workflows/Main/badge.svg"/>
14+
<a alt="GitHub Actions" href="https://github.com/rust-serverless/dynomite/actions">
15+
<img src="https://github.com/rust-serverless/dynomite/workflows/Main/badge.svg"/>
1616
</a>
1717
<a alt="crates.io" href="https://crates.io/crates/dynomite">
1818
<img src="https://img.shields.io/crates/v/dynomite.svg?logo=rust"/>
1919
</a>
20-
<a alt="docs.rs" href="http://docs.rs/dynomite">
20+
<a alt="docs.rs" href="https://docs.rs/dynomite">
2121
<img src="https://docs.rs/dynomite/badge.svg"/>
2222
</a>
23-
<a alt="latest docs" href="https://softprops.github.io/dynomite">
24-
<img src="https://img.shields.io/badge/docs-latest-green.svg"/>
25-
</a>
2623
<a alt="license" href="LICENSE">
2724
<img src="https://img.shields.io/badge/license-MIT-brightgreen.svg"/>
2825
</a>
@@ -54,7 +51,7 @@ use std::collections::HashMap;
5451
use rusoto_dynamodb::AttributeValue;
5552
use uuid::Uuid;
5653

57-
let mut item = HashMap.new();
54+
let mut item = HashMap::new();
5855
item.insert(
5956
"pk".to_string(), AttributeValue {
6057
s: Some(Uuid::new_v4().to_hyphenated().to_string()),
@@ -123,4 +120,4 @@ In another, run a rust binary with a client initialized like you see the the [lo
123120

124121
* [How DynamoDB works](https://www.slideshare.net/AmazonWebServices/amazon-dynamodb-under-the-hood-how-we-built-a-hyperscale-database-dat321-aws-reinvent-2018)
125122

126-
Doug Tangren (softprops) 2018-2020
123+
Doug Tangren ([softprops](https://github.com/softprops)) 2018-2020, Alexander Zaitsev ([zamazan4ik](https://github.com/zamazan4ik)) 2021

dynomite-derive/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[package]
22
name = "dynomite-derive"
33
version = "0.10.0"
4-
authors = ["softprops <d.tangren@gmail.com>"]
4+
authors = ["softprops <d.tangren@gmail.com>", "Alexander Zaitsev <zamazan4ik@tut.by>"]
55
description = "Derives AWS DynamoDB dynomite types from native Rust struct types"
66
license = "MIT"
77
keywords = ["dynamodb", "rusoto", "rusoto_dynamodb"]
88
readme = "../README.md"
99
documentation = "https://docs.rs/dynomite-derive"
10-
homepage = "https://github.com/softprops/dynomite"
11-
repository = "https://github.com/softprops/dynomite"
10+
homepage = "https://github.com/rust-serverless/dynomite"
11+
repository = "https://github.com/rust-serverless/dynomite"
1212
edition = "2018"
1313

1414
[badges]
15-
coveralls = { repository = "softprops/dynomite" }
15+
coveralls = { repository = "rust-serverless/dynomite" }
1616
maintenance = { status = "actively-developed" }
1717

1818
[lib]

dynomite/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
[package]
22
name = "dynomite"
33
version = "0.10.0"
4-
authors = ["softprops <d.tangren@gmail.com>"]
4+
authors = ["softprops <d.tangren@gmail.com>", "Alexander Zaitsev <zamazan4ik@tut.by>"]
55
description = "Provides set of high-level productive DynamoDB interfaces"
66
license = "MIT"
77
keywords = ["dynamodb", "rusoto", "rusoto_dynamodb"]
88
readme = "../README.md"
99
documentation = "https://docs.rs/dynomite"
10-
homepage = "https://github.com/softprops/dynomite"
11-
repository = "https://github.com/softprops/dynomite"
10+
homepage = "https://github.com/rust-serverless/dynomite"
11+
repository = "https://github.com/rust-serverless/dynomite"
1212
edition = "2018"
1313
categories = ["database"]
1414

1515
[badges]
16-
coveralls = { repository = "softprops/dynomite" }
16+
coveralls = { repository = "rust-serverless/dynomite" }
1717
maintenance = { status = "actively-developed" }
1818

1919
[dependencies]

0 commit comments

Comments
 (0)