Skip to content

Commit 47712af

Browse files
committed
Reexport configs
1 parent fbf2955 commit 47712af

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ path = "src/main.rs"
2828

2929
[dependencies]
3030
# Internal dependencies
31-
rorm-declaration = { version = "~0.3" }
32-
rorm-sql = { version = "~0.6", features = ["sqlite", "mysql", "postgres"] }
31+
rorm-declaration = { version = "~0.3", path = "./rorm-declaration" }
32+
rorm-sql = { version = "~0.6", path = "./rorm-sql", features = ["sqlite", "mysql", "postgres"] }
3333

3434
# CLI parsing tool
3535
clap = { version = "~4", features = ["derive"] }

changelog.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Since 0.6.0
1+
Since 0.7.1
22
-----------

src/lib.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
/// Exports for [rorm-cli-lib].
2-
///
1+
/// Reexport the config
2+
pub use rorm_declaration::config;
3+
34
/// Reexports for executing the defined cli parser via another
45
pub mod entry;
56
/// This module is used for creating a configuration file that can be used by the

0 commit comments

Comments
 (0)