storage: create Cargo.toml for {database, cuprate-txpool} (#140)

This commit is contained in:
hinto-janai 2024-05-29 15:00:29 -04:00 committed by GitHub
parent d052fbedf1
commit c50d9642be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 24 additions and 6 deletions

View file

@ -1,6 +1,15 @@
[package]
name = "cuprate-txpool"
version = "0.0.0"
edition = "2021"
name = "cuprate-txpool"
version = "0.0.0"
edition = "2021"
description = "Cuprate's transaction pool database"
license = "MIT"
authors = ["hinto-janai"]
repository = "https://github.com/Cuprate/cuprate/tree/main/storage/cuprate-txpool"
keywords = ["cuprate", "txpool", "transaction", "pool", "database"]
[features]
[dependencies]
[dev-dependencies]

View file

@ -1,6 +1,15 @@
[package]
name = "database"
version = "0.0.0"
edition = "2021"
name = "database"
version = "0.0.0"
edition = "2021"
description = "Cuprate's database abstraction"
license = "MIT"
authors = ["hinto-janai"]
repository = "https://github.com/Cuprate/cuprate/tree/main/storage/database"
keywords = ["cuprate", "database"]
[features]
[dependencies]
[dev-dependencies]