Skip to content

Commit

Permalink
Update dill
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiimk committed Dec 23, 2024
1 parent 2f871f0 commit 8bd020f
Show file tree
Hide file tree
Showing 46 changed files with 49 additions and 49 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/adapter/auth-oso/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ kamu-accounts = { workspace = true }
kamu-core = { workspace = true }

async-trait = "0.1"
dill = "0.9"
dill = "0.10"
oso = "0.27"
oso-derive = "0.27"
tracing = { version = "0.1", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion src/adapter/graphql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ chrono = "0.4"
datafusion = { version = "43", default-features = false, features = [
"serde",
] } # TODO: Currently needed for type conversions but ideally should be encapsulated by kamu-core
dill = "0.9"
dill = "0.10"
futures = "0.3"
secrecy = "0.10"
serde = { version = "1", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion src/adapter/http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ bytes = "1"
canonical_json = { version = "0.5.0", default-features = false }
chrono = { version = "0.4", features = ["serde"] }
datafusion = { version = "43", default-features = false } # TODO: Currently needed for type conversions but ideally should be encapsulated by kamu-core
dill = "0.9"
dill = "0.10"
ed25519-dalek = { version = "2", default-features = false, features = [
"std",
"fast",
Expand Down
2 changes: 1 addition & 1 deletion src/adapter/oauth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ opendatafabric = { workspace = true }
kamu-accounts = { workspace = true }

async-trait = "0.1"
dill = "0.9"
dill = "0.10"
http = "1"
reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls",
Expand Down
2 changes: 1 addition & 1 deletion src/adapter/odata/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ axum = { version = "0.7", default-features = false, features = [] }
chrono = { version = "0.4", default-features = false }
datafusion = { version = "43", default-features = false }
datafusion-odata = { version = "43", default-features = false }
dill = { version = "0.9" }
dill = "0.10"
futures = { version = "0.3", default-features = false }
http = "1"
tracing = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion src/app/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ datafusion = { version = "43", default-features = false, features = [
"unicode_expressions",
"compression",
] }
dill = "0.9"
dill = "0.10"
dirs = "5"
fs_extra = "1.3"
futures = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion src/domain/accounts/services/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ time-source = { workspace = true }
argon2 = { version = "0.5" }
async-trait = { version = "0.1", default-features = false }
chrono = { version = "0.4", default-features = false }
dill = "0.9"
dill = "0.10"
jsonwebtoken = "9"
password-hash = { version = "0.5", default-features = false }
serde = "1"
Expand Down
2 changes: 1 addition & 1 deletion src/domain/auth-rebac/services/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ messaging-outbox = { workspace = true }
opendatafabric = { workspace = true }

async-trait = "0.1"
dill = "0.9"
dill = "0.10"
futures = "0.3"
tracing = { version = "0.1", default-features = false }

Expand Down
2 changes: 1 addition & 1 deletion src/domain/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ opendatafabric = { workspace = true }
async-trait = { version = "0.1", default-features = false }
bytes = { version = "1", default-features = false }
chrono = { version = "0.4", default-features = false }
dill = "0.9"
dill = "0.10"
futures = { version = "0.3", default-features = false }
http = { version = "1" }
pathdiff = { version = "0.2", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion src/domain/datasets/services/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ time-source = { workspace = true }
async-stream = "0.3"
async-trait = { version = "0.1", default-features = false }
chrono = { version = "0.4", default-features = false }
dill = "0.9"
dill = "0.10"
futures = { version = "0.3", default-features = false }
petgraph = { version = "0.6", default-features = false, features = [
"stable_graph",
Expand Down
2 changes: 1 addition & 1 deletion src/domain/flow-system/domain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ kamu-task-system = { workspace = true }
async-trait = { version = "0.1", default-features = false }
chrono = { version = "0.4", default-features = false }
cron = { version = "0.12", default-features = false }
dill = { version = "0.9" }
dill = "0.10"
lazy_static = { version = "1" }
sqlx = { version = "0.8", default-features = false, features = ["macros"] }
strum = { version = "0.26", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion src/domain/flow-system/services/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ time-source = { workspace = true }
async-stream = "0.3"
async-trait = { version = "0.1", default-features = false }
chrono = { version = "0.4", default-features = false }
dill = "0.9"
dill = "0.10"
futures = "0.3"
tokio = { version = "1", default-features = false, features = [] }
tracing = { version = "0.1", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion src/domain/task-system/services/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ time-source = { workspace = true }
kamu-task-system = { workspace = true }

async-trait = { version = "0.1", default-features = false }
dill = "0.9"
dill = "0.10"
futures = "0.3"
serde_json = "1"
tokio = { version = "1", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion src/infra/accounts/inmem/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ internal-error = { workspace = true }

async-trait = { version = "0.1", default-features = false }
chrono = { version = "0.4", default-features = false }
dill = "0.9"
dill = "0.10"
uuid = "1"


Expand Down
2 changes: 1 addition & 1 deletion src/infra/accounts/mysql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ opendatafabric = { workspace = true, features = ["sqlx-mysql"] }

async-trait = { version = "0.1", default-features = false }
chrono = { version = "0.4", default-features = false }
dill = "0.9"
dill = "0.10"
sqlx = { version = "0.8", default-features = false, features = [
"runtime-tokio-rustls",
"macros",
Expand Down
2 changes: 1 addition & 1 deletion src/infra/accounts/postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ opendatafabric = { workspace = true, features = ["sqlx-postgres"] }

async-trait = { version = "0.1", default-features = false }
chrono = { version = "0.4", default-features = false }
dill = "0.9"
dill = "0.10"
sqlx = { version = "0.8", default-features = false, features = [
"runtime-tokio-rustls",
"macros",
Expand Down
2 changes: 1 addition & 1 deletion src/infra/accounts/repo-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ kamu-adapter-oauth = { workspace = true }

argon2 = { version = "0.5" }
chrono = { version = "0.4", default-features = false }
dill = "0.9"
dill = "0.10"
password-hash = { version = "0.5", default-features = false }
uuid = "1"
rand = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion src/infra/accounts/sqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ opendatafabric = { workspace = true, features = ["sqlx-sqlite"] }

async-trait = { version = "0.1", default-features = false }
chrono = { version = "0.4", default-features = false }
dill = "0.9"
dill = "0.10"
sqlx = { version = "0.8", default-features = false, features = [
"runtime-tokio-rustls",
"macros",
Expand Down
2 changes: 1 addition & 1 deletion src/infra/auth-rebac/inmem/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ doctest = false
kamu-auth-rebac = { workspace = true }

async-trait = "0.1"
dill = "0.9"
dill = "0.10"
tokio = { version = "1", default-features = false, features = [] }


Expand Down
2 changes: 1 addition & 1 deletion src/infra/auth-rebac/postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ internal-error = { workspace = true }
kamu-auth-rebac = { workspace = true, features = ["sqlx"] }

async-trait = "0.1"
dill = "0.9"
dill = "0.10"
sqlx = { version = "0.8", default-features = false, features = [
"runtime-tokio-rustls",
"macros",
Expand Down
2 changes: 1 addition & 1 deletion src/infra/auth-rebac/repo-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ doctest = false
[dependencies]
kamu-auth-rebac = { workspace = true }

dill = "0.9"
dill = "0.10"
2 changes: 1 addition & 1 deletion src/infra/auth-rebac/sqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ internal-error = { workspace = true }
kamu-auth-rebac = { workspace = true, features = ["sqlx"] }

async-trait = "0.1"
dill = "0.9"
dill = "0.10"
sqlx = { version = "0.8", default-features = false, features = [
"runtime-tokio-rustls",
"macros",
Expand Down
2 changes: 1 addition & 1 deletion src/infra/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ bytes = "1"
cfg-if = "1" # Conditional compilation
chrono = { version = "0.4", features = ["serde"] }
dashmap = { version = "6", default-features = false }
dill = "0.9"
dill = "0.10"
futures = "0.3"
glob = "0.3" # Used for glob fetch
itertools = "0.13"
Expand Down
2 changes: 1 addition & 1 deletion src/infra/datasets/inmem/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ opendatafabric = { workspace = true }
internal-error = { workspace = true }

async-trait = { version = "0.1", default-features = false }
dill = "0.9"
dill = "0.10"
futures = { version = "0.3", default-features = false }
tokio-stream = { version = "0.1", default-features = false }
uuid = { version = "1", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion src/infra/datasets/postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ opendatafabric = { workspace = true, features = ["sqlx-postgres"] }

async-stream = "0.3"
async-trait = { version = "0.1", default-features = false }
dill = "0.9"
dill = "0.10"
futures = "0.3"
sqlx = { version = "0.8", default-features = false, features = [
"runtime-tokio-rustls",
Expand Down
2 changes: 1 addition & 1 deletion src/infra/datasets/repo-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ kamu-datasets = { workspace = true }
opendatafabric = { workspace = true }

chrono = { version = "0.4", default-features = false }
dill = "0.9"
dill = "0.10"
itertools = "0.13"
futures = "0.3"
secrecy = "0.10"
Expand Down
2 changes: 1 addition & 1 deletion src/infra/datasets/sqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ opendatafabric = { workspace = true, features = ["sqlx-sqlite"] }

async-stream = "0.3"
async-trait = { version = "0.1", default-features = false }
dill = "0.9"
dill = "0.10"
futures = "0.3"
sqlx = { version = "0.8", default-features = false, features = [
"runtime-tokio-rustls",
Expand Down
2 changes: 1 addition & 1 deletion src/infra/flow-system/inmem/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ kamu-flow-system = { workspace = true }

async-trait = { version = "0.1", default-features = false }
chrono = { version = "0.4", default-features = false }
dill = "0.9"
dill = "0.10"
futures = "0.3"
tokio = { version = "1", default-features = false, features = [] }
tokio-stream = { version = "0.1", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion src/infra/flow-system/postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ opendatafabric = { workspace = true }
async-stream = "0.3"
async-trait = { version = "0.1", default-features = false }
chrono = { version = "0.4", default-features = false }
dill = "0.9"
dill = "0.10"
futures = "0.3"
serde_json = "1"
sqlx = { version = "0.8", default-features = false, features = [
Expand Down
2 changes: 1 addition & 1 deletion src/infra/flow-system/repo-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ kamu-flow-system = { workspace = true }
kamu-task-system = { workspace = true }

chrono = { version = "0.4", default-features = false }
dill = "0.9"
dill = "0.10"
futures = "0.3"
2 changes: 1 addition & 1 deletion src/infra/flow-system/sqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ opendatafabric = { workspace = true }
async-stream = "0.3"
async-trait = { version = "0.1", default-features = false }
chrono = { version = "0.4", default-features = false }
dill = "0.9"
dill = "0.10"
futures = "0.3"
serde_json = "1"
sqlx = { version = "0.8", default-features = false, features = [
Expand Down
2 changes: 1 addition & 1 deletion src/infra/messaging-outbox/inmem/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ messaging-outbox = { workspace = true }
internal-error = { workspace = true }

async-trait = { version = "0.1", default-features = false }
dill = "0.9"
dill = "0.10"
tokio = { version = "1", default-features = false }
tokio-stream = "0.1"

Expand Down
2 changes: 1 addition & 1 deletion src/infra/messaging-outbox/postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ internal-error = { workspace = true }

async-stream = "0.3"
async-trait = { version = "0.1", default-features = false }
dill = "0.9"
dill = "0.10"
futures = "0.3"
sqlx = { version = "0.8", default-features = false, features = [
"runtime-tokio-rustls",
Expand Down
2 changes: 1 addition & 1 deletion src/infra/messaging-outbox/repo-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ doctest = false
messaging-outbox = { workspace = true }

chrono = { version = "0.4", default-features = false }
dill = "0.9"
dill = "0.10"
futures = "0.3"
rand = "0.8"
serde = { version = "1", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion src/infra/messaging-outbox/sqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ internal-error = { workspace = true }

async-stream = "0.3"
async-trait = { version = "0.1", default-features = false }
dill = "0.9"
dill = "0.10"
futures = "0.3"
indoc = "2"
sqlx = { version = "0.8", default-features = false, features = [
Expand Down
2 changes: 1 addition & 1 deletion src/infra/task-system/inmem/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ opendatafabric = { workspace = true }
kamu-task-system = { workspace = true }

async-trait = { version = "0.1", default-features = false }
dill = "0.9"
dill = "0.10"
futures = "0.3"


Expand Down
2 changes: 1 addition & 1 deletion src/infra/task-system/postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ kamu-task-system = { workspace = true }

async-stream = "0.3"
async-trait = { version = "0.1", default-features = false }
dill = "0.9"
dill = "0.10"
futures = "0.3"
serde_json = "1"
sqlx = { version = "0.8", default-features = false, features = [
Expand Down
2 changes: 1 addition & 1 deletion src/infra/task-system/repo-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ kamu-task-system = { workspace = true }
opendatafabric = { workspace = true }

chrono = { version = "0.4", default-features = false }
dill = "0.9"
dill = "0.10"
futures = "0.3"


Expand Down
2 changes: 1 addition & 1 deletion src/infra/task-system/sqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ kamu-task-system = { workspace = true }
async-stream = "0.3"
async-trait = { version = "0.1", default-features = false }
chrono = { version = "0.4", default-features = false }
dill = "0.9"
dill = "0.10"
futures = "0.3"
serde_json = "1"
sqlx = { version = "0.8", default-features = false, features = [
Expand Down
2 changes: 1 addition & 1 deletion src/utils/container-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ random-names = { workspace = true }

async-trait = "0.1"
cfg-if = "1"
dill = "0.9"
dill = "0.10"
libc = "0.2"
regex = "1"
serde = { version = "1", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion src/utils/database-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ aws-config = "1"
aws-credential-types = "1"
aws-sdk-secretsmanager = "1"
chrono = { version = "0.4", default-features = false }
dill = "0.9"
dill = "0.10"
futures = { version = "0.3", default-features = false }
hex = "0.4"
hmac = "0.12"
Expand Down
2 changes: 1 addition & 1 deletion src/utils/init-on-startup/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ database-common = { workspace = true }
internal-error = { workspace = true }

async-trait = "0.1"
dill = "0.9"
dill = "0.10"
petgraph = { version = "0.6", default-features = false, features = [
"stable_graph",
] }
Expand Down
Loading

0 comments on commit 8bd020f

Please sign in to comment.