Skip to content

Commit

Permalink
Setting dependency baseline
Browse files Browse the repository at this point in the history
Also preparing to release 1.0
  • Loading branch information
ecton committed Feb 4, 2022
1 parent 6c46bf0 commit 5c1b9a4
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 21 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: [ecton]
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v1.0.0

- There were no changes in this release.

## v1.0.0-rc.4

### Changed
Expand Down
42 changes: 21 additions & 21 deletions pot/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pot"
version = "1.0.0-rc.4"
version = "1.0.0"
edition = "2021"
description = "A concise binary serialization format written for `BonsaiDb`."
license = "MIT OR Apache-2.0"
Expand All @@ -13,31 +13,31 @@ categories = ["encoding"]
default = []

[dependencies]
serde = { version = "1", features = ["derive"] }
thiserror = "1"
tracing = { version = "0.1", features = [
serde = { version = "1.0.136", features = ["derive"] }
thiserror = "1.0.30"
tracing = { version = "0.1.30", features = [
"release_max_level_off",
], optional = true }
byteorder = "1"
bytes = "1"
half = "1"
byteorder = "1.4.3"
bytes = "1.1.0"
half = "1.8.2"
derive-where = "=1.0.0-rc.2"

[dev-dependencies]
tracing-subscriber = { version = "0.3" }
tracing = { version = "0.1" }
rand = "0.8"
fake = "2"
chrono = { version = "0.4", features = ["serde"] }
anyhow = "1"
cli-table = "0.4"
thousands = "0.2"
ciborium = "0.2"
bincode = "1"
criterion = { version = "0.3", features = ["html_reports"] }
serde_bytes = "0.11"
serde_json = "1"
approx = "0.5"
tracing-subscriber = "0.3.8"
tracing = "0.1.30"
rand = "0.8.4"
fake = "2.4.3"
chrono = { version = "0.4.19", features = ["serde"] }
anyhow = "1.0.53"
cli-table = "0.4.6"
thousands = "0.2.0"
ciborium = "0.2.0"
bincode = "1.3.3"
criterion = { version = "0.3.5", features = ["html_reports"] }
serde_bytes = "0.11.5"
serde_json = "1.0.78"
approx = "0.5.1"

[[bench]]
name = "benchmarks"
Expand Down

0 comments on commit 5c1b9a4

Please sign in to comment.