-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (38 loc) · 991 Bytes
/
Cargo.toml
File metadata and controls
41 lines (38 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "fmql"
version = "0.3.0"
edition = "2024"
authors = ["Chris Mann"]
description = "A fast and feature-rich file manager written in Rust"
license = "MIT"
repository = "https://github.com/chriswmann/fmql"
homepage = "https://github.com/chriswmann/fmql"
keywords = ["file", "manager", "query", "language", "cli"]
categories = ["filesystem", "command-line-utilities"]
readme = "README.md"
include = [
"examples/*.rs",
"src/**/*.rs",
"README.md",
"LICENSE"
]
[dependencies]
chrono = { version = "0.4.34", features = ["serde"] }
clap = { version = "4.4.18", features = ["derive"] }
sqlparser = "0.55.0"
thiserror = "1.0.57"
regex = "1.10.3"
lazy_static = "1.4.0"
tempfile = "3.10.0"
walkdir = "2.4.0"
dirs = "5.0.1"
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.113"
glob = "0.3.1"
[dev-dependencies]
tempfile = "3.10.0"
pretty_assertions = "1.4.0"
filetime = "0.2.22"
[[example]]
name = "sql_queries"
path = "examples/sql_queries.rs"