[package] name = "markbase-fskit" version = "0.1.0" edition = "2021" [dependencies] anyhow = "1" clap = { version = "4", features = ["derive"] } filetree = { path = "../filetree" } objc2 = "0.6" objc2-foundation = { version = "0.3", features = ["NSString", "NSData", "NSError", "NSURL"] } objc2-fs-kit = { version = "0.3", features = [ "FSVolume", "FSFileSystem", "FSFileSystemBase", "FSUnaryFileSystem", "FSItem", "FSFileName", "FSResource", "FSContainer", "FSModuleIdentity", "FSMutableFileDataBuffer", "FSTaskOptions", "FSKitDefines", "FSKitError", "FSKitTypes", "FSKitFunctions", "FSEntityIdentifier", "FSVolumeExtent", "block2", "libc", ] } block2 = { version = "0.6", default-features = false, features = ["std"] } rusqlite = { version = "0.32", features = ["bundled"] } libc = "0.2" serde = { version = "1", features = ["derive"] } serde_json = "1" tokio = { version = "1", features = ["full"] } [lib] name = "markbase_fskit" crate-type = ["cdylib", "rlib"] [[bin]] name = "markbase_fs" path = "src/bin.rs"