Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

Cargo.toml 1.7 KB

You have to be logged in to leave a comment. Sign In
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
  1. [package]
  2. name = "bookdata"
  3. version = "2.0.0"
  4. authors = ["Michael Ekstrand <michaelekstrand@boisestate.edu>"]
  5. edition = "2021"
  6. default-run = "bookdata"
  7. [profile.release]
  8. opt-level = 3
  9. debug = 1
  10. # lto = "thin"
  11. [dependencies]
  12. paste = "^1.0"
  13. enum_dispatch = "^0.3.7"
  14. async-trait = "^0.1.51"
  15. structopt = ">=0.2"
  16. log = { version = "^0.4.8", features = ["std"] }
  17. pretty_env_logger = "^0.4"
  18. toml = "0.5"
  19. csv = "^1.0"
  20. quick-xml = "^0.22.0"
  21. serde = { version="^1.0", features=["derive"] }
  22. serde_json = { version="^1.0" }
  23. rmp-serde = "^1.0"
  24. molt = "^0.3.1"
  25. lazy_static = "^1.4"
  26. os_pipe = "^1.0"
  27. fallible-iterator = "^0.2.0"
  28. anyhow = "^1.0.26"
  29. thiserror = "^1.0"
  30. tokio = "^1.0"
  31. futures = "^0.3.14"
  32. hashbrown = "^0.12"
  33. # rayon = { version="^1.5", optional=true }
  34. md-5 = "^0.10"
  35. zstd = "^0.10"
  36. flate2 = { version="^1.0.6" }
  37. zip = { version=">=0.5.0", default-features=false, features=["deflate"] }
  38. unicode-normalization = "0.1"
  39. parse-display = "^0.5.1"
  40. hex = "^0.4.3"
  41. chrono = "^0.4"
  42. glob = "^0.3"
  43. nom = "7"
  44. regex = "^1.5.0"
  45. friendly = { version="^0.1.0", features=["chrono"] }
  46. cpu-time = "^1.0"
  47. petgraph = { version="^0.6", features=["serde-1"] }
  48. # graphalgs = { version="^0.0.6", optional=true }
  49. arrow = "^9.0"
  50. parquet = { version = "^9.0", default-features = false, features = ["arrow", "snap", "zstd", "flate2"] }
  51. datafusion = { version="^7.0", default-features=false, features=["unicode_expressions", "regex_expressions"]}
  52. parquet_derive = "^9.0"
  53. mimalloc = { version="^0.1", default-features=false }
  54. [dev-dependencies]
  55. tempfile = "^3.2"
  56. quickcheck = {version="^1.0", default-features=false}
  57. [features]
  58. # adv-graph = ["graphalgs", "rayon"]
  59. [target.'cfg(unix)'.dependencies]
  60. libc = "^0.2"
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...