Skip to content

Commit

Permalink
fix(deps): Update main Cargo file
Browse files Browse the repository at this point in the history
  • Loading branch information
GeekMasher committed Dec 20, 2024
1 parent a6a636d commit 35dbf74
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ rusqlite = ["backends", "geekorm-derive/rusqlite", "geekorm-core/rusqlite"]
# sqlite = ["backends", "geekorm-derive/sqlite", "geekorm-core/sqlite"]

[dependencies]
geekorm-core = { version = "^0.8.3", path = "geekorm-core" }
geekorm-derive = { version = "^0.8.3", path = "geekorm-derive" }
geekorm-core = { version = "^0.8.2", path = "geekorm-core" }
geekorm-derive = { version = "^0.8.2", path = "geekorm-derive" }

[dev-dependencies]
geekorm = { path = ".", features = ["all", "semver", "tfa"] }
Expand Down
6 changes: 6 additions & 0 deletions geekorm-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ tag-name = "v{{version}}"
[features]
default = []

utils = ["dep:serde_yaml", "dep:toml", "dep:figment", "dep:anyhow", "dep:log"]

uuid = ["dep:uuid"]
chrono = ["dep:chrono"]
semver = ["dep:semver"]
Expand Down Expand Up @@ -55,6 +57,10 @@ thiserror = "^2.0"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
log = { version = "^0.4", features = ["std"], optional = true }
serde_yaml = { version = "^0.9", optional = true }
toml = { version = "^0.8", optional = true }
figment = { version = "^0.10", optional = true }
anyhow = { version = "^1.0", optional = true }

uuid = { version = "^1.9", features = ["v4"], optional = true }
chrono = { version = "^0.4", optional = true, features = ["serde"] }
Expand Down

0 comments on commit 35dbf74

Please sign in to comment.