Skip to content

Commit

Permalink
Merge pull request #51 from manomayam/opendal-migr-0.44.2
Browse files Browse the repository at this point in the history
feat: migrate opendal to 0.44.2
  • Loading branch information
damooo authored Feb 4, 2024
2 parents bc43c3d + 04782af commit da2eb6e
Show file tree
Hide file tree
Showing 36 changed files with 334 additions and 333 deletions.
6 changes: 0 additions & 6 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,5 @@
"streetsidesoftware.code-spell-checker"
]
}
},
"features": {
"ghcr.io/guiyomh/features/just:0": {
"version": "latest"
},
"ghcr.io/lee-orr/rusty-dev-containers/cargo-binstall:0": {}
}
}
79 changes: 42 additions & 37 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions crates/manas_access_control/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,32 +13,32 @@ dyn_problem = { version = "0.1.1", path = "../../fcrates/dyn_problem", features
"alias-future",
"ext-typed-record"
] }
futures = "0.3.28"
ghost = "0.1.13"
futures = "0.3.30"
ghost = "0.1.17"
http_uri = { version = "1.0.1", path = "../../fcrates/http_uri", features = [
"invariants",
"sophia"
] }
manas_authentication = { version = "0.1.0", path = "../manas_authentication", features = ["creds-context"]}
http_typed_headers = { version = "0.1.0", path = "../../fcrates/http_typed_headers", default-features = false, features = ["wac-allow"] }
manas_space = { version = "0.1.0", path = "../manas_space" }
async-recursion = "1.0.4"
async-recursion = "1.0.5"
itertools = "0.11.0"
paste = "1.0.14"
rdf_utils = { version = "0.3.1", path = "../../fcrates/rdf_utils" }
rdf_vocabularies = { version = "0.2.0", features = ["ns-acp", "ns-acl", "ns-foaf","ns-rdf"] }
sophia_api = "0.8.0"
thiserror = "1.0.43"
thiserror = "1.0.56"
tower = "0.4.13"
tracing = { version = "0.1.37", features = ["attributes"] }
tracing = { version = "0.1.40", features = ["attributes"] }
unwrap-infallible = "0.1.5"
once_cell = "1.18.0"
once_cell = "1.19.0"
vec1 = {version = "1.10.1", features = ["serde"]}

# feature: layered-repo-impl
manas_repo = { version = "0.1.0", path = "../manas_repo", optional = true }
typed_record = { version = "0.1.1", path = "../../fcrates/typed_record", features = ["ext-anymap", "ext-http"]}
serde = { version = "1.0.185", features = ["derive"] }
serde = { version = "1.0.196", features = ["derive"] }


[features]
Expand Down
24 changes: 12 additions & 12 deletions crates/manas_authentication/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,26 +13,26 @@ http_uri = { version = "1.0.1", path = "../../fcrates/http_uri", features = [
"serde",
] }
webid = { version = "0.1.0", path = "../../fcrates/webid", features = ["serde"] }
http = { version = "0.2.9" }
serde = { version = "1.0.169", features = ["derive"] }
http = { version = "0.2.11" }
serde = { version = "1.0.196", features = ["derive"] }

# feature cr-framework
thiserror = { version = "1.0.43", optional = true }
tracing = { version = "0.1.37", optional = true }
thiserror = { version = "1.0.56", optional = true }
tracing = { version = "0.1.40", optional = true }
mime = { version = "0.3.17", optional = true }
http_typed_headers = { version = "0.1.0", path = "../../fcrates/http_typed_headers", default-features = false, features = ["www-authenticate"], optional = true}
manas_http = { version = "0.1.1", path = "../manas_http", features = [
"service",
], optional = true }
dyn_problem = { version = "0.1.1", path = "../../fcrates/dyn_problem", optional = true }
either = { version = "1.8.1", optional = true }
either = { version = "1.9.0", optional = true }
itertools = { version = "0.11.0", optional = true }
headers = { version = "0.3.8", optional = true }
futures = { version = "0.3.28", optional = true }
headers = { version = "0.3.9", optional = true }
futures = { version = "0.3.30", optional = true }
tower = { version = "0.4.13", optional = true }

# feature: solid-oidc
moka = { version = "0.12.0", optional = true, default-features = false, features = [
moka = { version = "0.12.5", optional = true, default-features = false, features = [
"future",
] }
rdf_vocabularies = { version = "0.2.0", features = [
Expand All @@ -41,16 +41,16 @@ rdf_vocabularies = { version = "0.2.0", features = [
], optional = true }
sophia_api = { version = "0.8.0", optional = true }
unwrap-infallible = "0.1.5"
reqwest = { version = "0.11.18", features = ["json"], optional = true, default-features = false}
reqwest = { version = "0.11.24", features = ["json"], optional = true, default-features = false}
picky = { version = "7.0.0-rc.8", optional = true, default-features = false }
dpop = { version = "0.1.1", path = "../../fcrates/dpop", optional = true, features = [
"http-header",
] }
gdp_rs = { version = "0.1.1", path = "../../fcrates/gdp_rs", features = ["serde"] }
serde_json = { version = "1.0.100", optional = true }
serde_json = { version = "1.0.113", optional = true }
solid_oidc_types = { version = "0.1.0", path = "../../fcrates/solid_oidc_types", optional = true }
once_cell = { version = "1.18.0", optional = true }
unicase = "2.6.0"
once_cell = { version = "1.19.0", optional = true }
unicase = "2.7.0"

# feature: creds-context
acp = { version = "0.1.0", path = "../../fcrates/acp", optional = true }
Expand Down
40 changes: 20 additions & 20 deletions crates/manas_http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,54 +11,54 @@ http_uri = { version = "1.0.1", path = "../../fcrates/http_uri" }
frunk_core = "0.4.2"
iri-string = { version = "0.7.0", features = ["serde"] }
gdp_rs = { version = "0.1.1", path = "../../fcrates/gdp_rs" }
once_cell = "1.18.0"
percent-encoding = "2.3.0"
regex = "1.10.2"
once_cell = "1.19.0"
percent-encoding = "2.3.1"
regex = "1.10.3"
uriparse = "0.6.4"
thiserror = "1.0.43"
tracing = { version = "0.1.37", features = ["attributes"] }
thiserror = "1.0.56"
tracing = { version = "0.1.40", features = ["attributes"] }
ecow = "0.2.0"

# feature: typed-headers
http_typed_headers = { version = "0.1.0", path = "../../fcrates/http_typed_headers", optional = true}
headers = { version = "0.3.8", optional = true }
http = { version = "0.2.9", optional = true }
smallvec = { version = "1.11.0", optional = true }
chrono = { version = "0.4.26", optional = true, default-features = false, features = [
headers = { version = "0.3.9", optional = true }
http = { version = "0.2.11", optional = true }
smallvec = { version = "1.13.1", optional = true }
chrono = { version = "0.4.33", optional = true, default-features = false, features = [
"std",
] }
async-convert = "1.0.0"

# feature: serde
serde = { version = "1.0.169", features = ["derive"], optional = true }
serde = { version = "1.0.196", features = ["derive"], optional = true }

# feature: representation
typed_record = { version = "0.1.1", path = "../../fcrates/typed_record", features = [
"ext-anymap",
], optional = true}
hyper = { version = "0.14.27", features = ["stream"], optional = true }
hyper = { version = "0.14.28", features = ["stream"], optional = true }
mime = { version = "0.3.17", optional = true }
either = { version = "1.8.1", optional = true }
either = { version = "1.9.0", optional = true }

# feature: impl-representation
bytes = { version = "1.4.0", optional = true }
futures = { version = "0.3.28", optional = true }
anyhow = { version = "1.0.71", optional = true }
bytes = { version = "1.5.0", optional = true }
futures = { version = "0.3.30", optional = true }
anyhow = { version = "1.0.79", optional = true }
rdf_utils = { version = "0.3.1", path = "../../fcrates/rdf_utils", optional = true, features = ["compat-ecow"]}
dyn_problem = { version = "0.1.1", path = "../../fcrates/dyn_problem", optional = true }
async-stream = { version = "0.3.5", optional = true }
rdf_dynsyn = { version = "0.4.0", path = "../../fcrates/rdf_dynsyn", optional = true, features = [
"async",
] }
tokio = { version = "1.29.1", features = ["rt", "io-util"], optional = true }
tokio-util = { version = "0.7.8", optional = true, features = ["io-util"] }
tokio = { version = "1.36.0", features = ["rt", "io-util"], optional = true }
tokio-util = { version = "0.7.10", optional = true, features = ["io-util"] }
sophia_api = { version = "0.8.0", optional = true }
async-once-cell = { version = "0.5.3", optional = true }
capped_stream = { version = "0.1.1", path = "../../fcrates/capped_stream", optional = true }

# feature: service
tower = { version = "0.4.13", optional = true, features = ["util"] }
dyn-clone = { version = "1.0.14", optional = true }
dyn-clone = { version = "1.0.16", optional = true }
http-api-problem = { version = "0.57.0", features = [
"api-error",
"hyper",
Expand All @@ -69,7 +69,7 @@ if_chain = { version = "1.0.2", optional = true }

# feature: test-utils
claims = { version = "0.7.1", optional = true }
rstest = { version = "0.18.1", optional = true }
rstest = { version = "0.18.2", optional = true }

[features]
serde = ["dep:serde", "iri-string/serde"]
Expand All @@ -83,7 +83,7 @@ test-utils = ["dep:rstest", "dep:claims"]

[dev-dependencies]
claims = "0.7.1"
rstest = "0.18.1"
rstest = "0.18.2"

[package.metadata.docs.rs]
all-features = true
Expand Down
Loading

0 comments on commit da2eb6e

Please sign in to comment.