Skip to content
This repository has been archived by the owner on Nov 28, 2022. It is now read-only.

feat: deprecation #27

Merged
merged 3 commits into from
Nov 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.0] - 2022-11-22

- Deprecate this crate.

## [0.6.0] - 2022-09-28

- Move out `Principal` to `candid` crate.
Expand Down
23 changes: 1 addition & 22 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ic-types"
version = "0.6.0"
version = "0.7.0"
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
edition = "2018"
description = "Types related to the Internet Computer Public Specification."
Expand All @@ -12,24 +12,3 @@ readme = "README.md"
categories = ["api-bindings", "data-structures", "no-std"]
keywords = ["internet-computer", "types", "dfinity"]
include = ["src", "Cargo.toml", "LICENSE", "README.md"]

[dependencies]
hex = "0.4.3"
sha2 = "0.10.1"

[dev-dependencies]
serde = { version = "1.0.133", features = ["derive"] }
serde_cbor = "0.11.2"

[dependencies.serde]
version = "1.0.115"
features = ["derive"]
optional = true

[dependencies.serde_bytes]
version = "0.11.5"
optional = true

[features]
# Default features include serde support.
default = ['serde', 'serde_bytes']
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# DEPRECATED

This is no longer supported. Its original contents has been moved to other projects.

* `Principal`: [`candid`](https://github.com/dfinity/candid/blob/28a9fe8e898dc7662de2a13204b6f06bce536e14/rust/candid/src/types/principal.rs).
* `HashTree`: [`agent-rs`](https://github.com/dfinity/agent-rs/tree/c9f9497dc8ced64b76250d76967f4f61a56d8262/ic-certification).

# IC Types

## Contributing
Expand Down
Loading