chore: update Cargo.toml for core crates

This commit is contained in:
Paul Makles
2023-04-22 18:01:06 +01:00
parent 403a94f70c
commit e84d55a697
6 changed files with 21 additions and 8 deletions

View File

@@ -1,7 +1,10 @@
[package]
name = "revolt-database"
version = "0.1.0"
version = "0.0.1"
edition = "2021"
license = "AGPL-3.0-or-later"
authors = [ "Paul Makles <me@insrt.uk>" ]
description = "Revolt Backend: Database Implementation"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@@ -1,7 +1,10 @@
[package]
name = "revolt-models"
version = "0.1.0"
version = "0.0.1"
edition = "2021"
license = "AGPL-3.0-or-later"
authors = [ "Paul Makles <me@insrt.uk>" ]
description = "Revolt Backend: API Models"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -14,7 +17,7 @@ default = [ "serde", "from_database" ]
[dependencies]
# Repo
revolt-database = { path = "../database", optional = true }
revolt-database = { version = "0.0.1", path = "../database", optional = true }
# Serialisation
serde = { version = "1", features = ["derive"], optional = true }

View File

@@ -1,7 +1,10 @@
[package]
name = "revolt-result"
version = "0.1.0"
version = "0.0.1"
edition = "2021"
license = "AGPL-3.0-or-later"
authors = [ "Paul Makles <me@insrt.uk>" ]
description = "Revolt Backend: Result and Error types"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html