Skip to content

Commit

Permalink
Reorganize keys in Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
bluk committed May 15, 2024
1 parent 6cde841 commit a9b46e1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
[package]
name = "bt_bencode"
version = "0.8.0"
license = "MIT OR Apache-2.0"
authors = ["Bryant Luk <code@bryantluk.com>"]
edition = "2018"
categories = ["encoding", "no-std"]
description = "A Bencode encoding/decoding implementation."
repository = "https://github.com/bluk/bt_bencode"
documentation = "https://docs.rs/bt_bencode/"
readme = "README.md"
edition = "2018"
include = [
"/src",
"/tests",
Expand All @@ -20,12 +16,16 @@ include = [
"/README.md",
]
keywords = ["bencode", "bittorrent", "torrent", "serialization", "serde"]
categories = ["encoding", "no-std"]
license = "MIT OR Apache-2.0"
name = "bt_bencode"
readme = "README.md"
repository = "https://github.com/bluk/bt_bencode"
rust-version = "1.36.0"
version = "0.8.0"

[dependencies]
serde = {version = "1.0.100", default-features = false }
itoa = {version = "1.0.0", default-features = false }
serde = {version = "1.0.100", default-features = false }

[dev-dependencies]
serde_derive = "1.0.100"
Expand Down

0 comments on commit a9b46e1

Please sign in to comment.