clients/filesystem-fuse/Cargo.toml (50 lines of code) (raw):

# Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. [package] name = "filesystem-fuse" version = "0.10.0-incubating-SNAPSHOT" rust-version = "1.75" edition = "2021" homepage = "https://gravitino.apache.org" license = "Apache-2.0" repository = "https://github.com/apache/gravitino" [[bin]] name = "gvfs-fuse" path = "src/main.rs" [lib] name = "gvfs_fuse" [dependencies] async-trait = "0.1" bytes = "1.6.0" chrono = "0.4.39" clap = { version = "4.5.24", features = ["derive"] } config = "0.13" daemonize = "0.5.0" dashmap = "6.1.0" fuse3 = { version = "0.8.1", "features" = ["tokio-runtime", "unprivileged"] } futures-util = "0.3.30" libc = "0.2.168" once_cell = "1.20.2" opendal = { version = "0.46.0", features = ["services-s3"] } reqwest = { version = "0.12.9", features = ["json"] } serde = { version = "1.0.216", features = ["derive"] } tokio = { version = "1.38.0", features = ["full"] } tracing = "0.1.41" tracing-subscriber = { version = "0.3.18", features = ["env-filter", "registry"] } urlencoding = "2.1.3" [dev-dependencies] mockito = "0.31"