Add a barebones common crate

This commit is contained in:
Omar Abdulla
2025-07-24 14:30:48 +03:00
parent b03ad3027e
commit 3494ce250e
4 changed files with 22 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
[package]
name = "revive-dt-common"
description = "A library containing common concepts that other crates in the workspace can rely on"
version.workspace = true
authors.workspace = true
license.workspace = true
edition.workspace = true
repository.workspace = true
rust-version.workspace = true
[dependencies]
anyhow = { workspace = true }
+2
View File
@@ -0,0 +1,2 @@
//! This crate provides common concepts, functionality, types, macros, and more that other crates in
//! the workspace can benefit from.