-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (44 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
57 lines (44 loc) · 1.13 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "graph_explorer"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "graph_explorer"
path = "src/main.rs"
[lib]
name = "graph_explorer"
path = "src/lib.rs"
[dependencies]
# Web framework
axum = { version = "0.7", features = ["multipart"] }
tokio = { version = "1.0", features = ["full"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["fs", "cors"] }
# Graph data structures
petgraph = "0.6"
# CSV parsing
csv = "1.3"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# File operations
clap = { version = "4.0", features = ["derive"] }
# UUID generation
uuid = { version = "1.0", features = ["v4"] }
# Date/time handling
chrono = { version = "0.4", features = ["serde"] }
# add some color to the output
colored = "3.0.0"
# Use toml_extract to read and print version information from Cargo.toml
#serde = {version = "1.0.218", features = ["derive"]}
#serde_json = "1.0"
toml = "0.8.20"
#tokio = {version = "1.44.2" ,features = ["full"]}
[dev-dependencies]
# Testing framework
tokio-test = "0.4"
tempfile = "3.0"
assert_matches = "1.5"