Skip to content

Commit a58cfba

Browse files
committed
Updated version to 0.3.0
1 parent f2851bf commit a58cfba

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "rorm-lib"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2021"
55
keywords = ["database", "library"]
66
authors = ["myOmikron <git@omikron.dev>"]
77
categories = ["database", "development-tools.categories.ffi"]
8-
repository = "https://github.com/myOmikron/drorm"
8+
repository = "https://github.com/rorm-orm/rorm-lib"
99
homepage = "https://rorm.rs"
1010
documentation = "https://docs.rorm.rs"
1111
license = "MIT"
@@ -16,22 +16,22 @@ name = "rorm"
1616
crate-type = ["staticlib", "cdylib"]
1717

1818
[dependencies]
19-
rorm-db = { version = "~0.2", path = "../rorm-db" }
19+
rorm-db = { version = "~0.3", path = "../rorm-db" }
2020

2121
# Runtime to execute the async context in
22-
tokio = { version = "^1.21" }
22+
tokio = { version = "~1.22" }
2323

2424
# Async wrapper
25-
futures = { version = "^0.3" }
25+
futures = { version = "~0.3" }
2626

2727
# SQLX is only needed for error unwrapping
28-
sqlx = { version = "^0.6" }
28+
sqlx = { version = "~0.6" }
2929

3030
# Date and time library
31-
chrono = { version = "^0.4" }
31+
chrono = { version = "~0.4" }
3232

3333
# Optional logging framework
34-
env_logger = { version = "0.9", optional = true }
34+
env_logger = { version = "~0.9", optional = true }
3535

3636
[features]
3737
default = [

0 commit comments

Comments
 (0)