This repository has been archived by the owner on Oct 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #184 from MindFlavor/cosmos_rewrite/pr
Complete CosmosDB crate rewrite
- Loading branch information
Showing
98 changed files
with
8,777 additions
and
2,757 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "azure_sdk_core" | ||
version = "0.30.1" | ||
version = "0.30.3" | ||
description = "Rust wrappers around Microsoft Azure REST APIs - Core crate" | ||
readme = "README.md" | ||
authors = ["Francesco Cogno <[email protected]>", "Max Gortman <[email protected]>", "Dong Liu <[email protected]>"] | ||
|
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
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
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
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 |
---|---|---|
@@ -1,20 +1,27 @@ | ||
pub use crate::ba512_range::BA512Range; | ||
pub use crate::modify_conditions::SequenceNumberCondition; | ||
pub use crate::modify_conditions::{IfMatchCondition, SequenceNumberCondition}; | ||
pub use crate::range::Range; | ||
pub use crate::{ | ||
AccessTierOption, AccessTierSupport, AppendPositionOption, AppendPositionSupport, BA512RangeOption, BA512RangeRequired, | ||
BA512RangeSupport, BlobNameRequired, BlobNameSupport, BlockIdRequired, BlockIdSupport, BodyRequired, BodySupport, CacheControlOption, | ||
CacheControlSupport, ClientRequestIdOption, ClientRequestIdSupport, ContainerNameRequired, ContainerNameSupport, | ||
ContentDispositionOption, ContentDispositionSupport, ContentEncodingOption, ContentEncodingSupport, ContentLanguageOption, | ||
ContentLanguageSupport, ContentLengthOption, ContentLengthRequired, ContentLengthSupport, ContentMD5Option, ContentMD5Support, | ||
ContentTypeOption, ContentTypeSupport, DeleteSnapshotsMethod, DeleteSnapshotsMethodSupport, DelimiterOption, DelimiterSupport, | ||
IfMatchConditionOption, IfMatchConditionSupport, IfSinceConditionOption, IfSinceConditionSupport, IncludeCopyOption, | ||
IncludeCopySupport, IncludeDeletedOption, IncludeDeletedSupport, IncludeListOptions, IncludeMetadataOption, IncludeMetadataSupport, | ||
IncludeSnapshotsOption, IncludeSnapshotsSupport, IncludeUncommittedBlobsOption, IncludeUncommittedBlobsSupport, LeaseBreakPeriodOption, | ||
LeaseBreakPeriodRequired, LeaseBreakPeriodSupport, LeaseDurationRequired, LeaseDurationSupport, LeaseIdOption, LeaseIdRequired, | ||
LeaseIdSupport, MaxResultsOption, MaxResultsSupport, MetadataOption, MetadataSupport, NextMarkerOption, NextMarkerSupport, | ||
PageBlobLengthRequired, PageBlobLengthSupport, PrefixOption, PrefixSupport, ProposedLeaseIdOption, ProposedLeaseIdRequired, | ||
ProposedLeaseIdSupport, RangeOption, RangeSupport, SequenceNumberConditionOption, SequenceNumberConditionSupport, SequenceNumberOption, | ||
SequenceNumberSupport, SnapshotOption, SnapshotRequired, SnapshotSupport, StoredAccessPolicy, StoredAccessPolicyList, TimeoutOption, | ||
TimeoutSupport, | ||
AccessTierOption, AccessTierSupport, ActivityIdOption, ActivityIdSupport, AppendPositionOption, | ||
AppendPositionSupport, BA512RangeOption, BA512RangeRequired, BA512RangeSupport, | ||
BlobNameRequired, BlobNameSupport, BlockIdRequired, BlockIdSupport, BodyRequired, BodySupport, | ||
CacheControlOption, CacheControlSupport, ClientRequestIdOption, ClientRequestIdSupport, | ||
ContainerNameRequired, ContainerNameSupport, ContentDispositionOption, | ||
ContentDispositionSupport, ContentEncodingOption, ContentEncodingSupport, | ||
ContentLanguageOption, ContentLanguageSupport, ContentLengthOption, ContentLengthRequired, | ||
ContentLengthSupport, ContentMD5Option, ContentMD5Support, ContentTypeOption, | ||
ContentTypeSupport, DeleteSnapshotsMethod, DeleteSnapshotsMethodSupport, DelimiterOption, | ||
DelimiterSupport, IfMatchConditionOption, IfMatchConditionSupport, IfModifiedSinceOption, | ||
IfModifiedSinceSupport, IfSinceConditionOption, IfSinceConditionSupport, IncludeCopyOption, | ||
IncludeCopySupport, IncludeDeletedOption, IncludeDeletedSupport, IncludeListOptions, | ||
IncludeMetadataOption, IncludeMetadataSupport, IncludeSnapshotsOption, IncludeSnapshotsSupport, | ||
IncludeUncommittedBlobsOption, IncludeUncommittedBlobsSupport, LeaseBreakPeriodOption, | ||
LeaseBreakPeriodRequired, LeaseBreakPeriodSupport, LeaseDurationRequired, LeaseDurationSupport, | ||
LeaseIdOption, LeaseIdRequired, LeaseIdSupport, MaxResultsOption, MaxResultsSupport, | ||
MetadataOption, MetadataSupport, NextMarkerOption, NextMarkerSupport, PageBlobLengthRequired, | ||
PageBlobLengthSupport, PrefixOption, PrefixSupport, ProposedLeaseIdOption, | ||
ProposedLeaseIdRequired, ProposedLeaseIdSupport, RangeOption, RangeSupport, | ||
SequenceNumberConditionOption, SequenceNumberConditionSupport, SequenceNumberOption, | ||
SequenceNumberSupport, SnapshotOption, SnapshotRequired, SnapshotSupport, StoredAccessPolicy, | ||
StoredAccessPolicyList, TimeoutOption, TimeoutSupport, UserAgentOption, UserAgentSupport, | ||
}; |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "azure_sdk_cosmos" | ||
version = "0.30.0" | ||
version = "0.32.0" | ||
description = "Rust wrappers around Microsoft Azure REST APIs - Azure Cosmos DB crate" | ||
readme = "README.md" | ||
authors = ["Francesco Cogno <[email protected]>", "Max Gortman <[email protected]>"] | ||
|
@@ -15,7 +15,7 @@ categories = ["api-bindings"] | |
edition = "2018" | ||
|
||
[dependencies] | ||
azure_sdk_core = { path = "../azure_sdk_core", version = "0.30.0" } | ||
azure_sdk_core = { path = "../azure_sdk_core", version = "0.30.1" } | ||
ring = "0.16" | ||
md5 = "0.7" | ||
RustyXML = "0.1" | ||
|
@@ -31,7 +31,7 @@ hyper = { version = "0.13.0-alpha.4" , features = ["u | |
log = "0.4" | ||
mime = "0.3" | ||
quick-error = "1.2" | ||
serde = "1.0" | ||
serde = { version = "1.0" } | ||
serde_derive = "1.0" | ||
serde_json = "1.0" | ||
serde-xml-rs = "0.3" | ||
|
@@ -41,11 +41,13 @@ uuid = { version = "0.8", features = ["v | |
smallvec = { version = "1.0" , features = ["serde"] } | ||
bytes = "0.5" | ||
hyper-rustls = { version = "0.19.0-alpha.3" , features = [] } | ||
futures = "0.3" | ||
|
||
[dev-dependencies] | ||
futures-executor-preview = "0.3.0-alpha.19" | ||
tokio = "0.2.0-alpha.6" | ||
futures-util = "0.3.1" | ||
serde = { version = "1.0", features = ["derive"] } | ||
|
||
[features] | ||
test_e2e = [] |
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
Oops, something went wrong.