natter/Cargo.toml

22 lines
962 B
TOML
Raw Normal View History

2023-10-18 23:03:45 +00:00
[package]
2023-12-22 00:28:31 +00:00
name = "natter"
2023-10-18 23:07:12 +00:00
version = "0.0.1"
2023-10-18 23:03:45 +00:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-10-18 23:26:04 +00:00
clap = { version = "4.4.6", default-features = false, features = ["std", "color", "help", "derive"] }
2023-10-22 19:01:30 +00:00
duster = { git = "https://code.fizz.buzz/talexander/duster.git", branch = "master" }
tree-sitter-highlight = { git = "https://github.com/tree-sitter/tree-sitter.git", rev = "52f7eaff3182a726eb064a91d4e49dfbaecd4ee3" }
2023-10-27 22:59:40 +00:00
futures = "0.3.29"
include_dir = "0.7.3"
2023-10-23 22:39:54 +00:00
# TODO: This is temporary to work on the latest organic code. Eventually switch back to using the published crate.
# organic = { path = "../organic" }
organic = "0.1.13"
serde = { version = "1.0.189", default-features = false, features = ["std", "derive"] }
2023-10-22 19:06:31 +00:00
serde_json = "1.0.107"
tokio = { version = "1.30.0", default-features = false, features = ["rt", "rt-multi-thread", "fs", "io-util"] }
toml = "0.8.2"
walkdir = "2.4.0"