-
Notifications
You must be signed in to change notification settings - Fork 50
/
Cargo.toml
37 lines (32 loc) · 1.14 KB
/
Cargo.toml
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
[package]
name = "bartholomew"
version = "0.10.0"
edition = "2021"
authors = ["Fermyon Engineering <[email protected]>"]
[lib]
crate-type = ["cdylib", "lib"]
[dependencies]
anyhow = "1.0.57"
brotli = "3.3.4"
bytes = "1.1.0"
chrono = { version = "0.4.19", features = ["serde"] }
flate2 = "1.0.23"
handlebars = { version = "4.2.2", features = ["dir_source", "script_helper"] }
handlebars_sprig = { git = "https://github.com/rajatjindal/handlebars-sprig", rev = "f2d42142121d4f04b35ce00fdd26ba48b0993fe0", optional = true }
http = "0.2.6"
pulldown-cmark = { version = "0.9.1", default-features = false }
rhai = "1.12.0"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
spin-sdk = { git = "https://github.com/fermyon/spin", rev = "139c40967a75dbdd5d4da2e626d24e68f54c0a5a", optional = true }
toml = "0.5.9"
wit-bindgen-rust = { git = "https://github.com/bytecodealliance/wit-bindgen", rev = "cb871cfa1ee460b51eb1d144b175b9aab9c50aba", default-features = false }
regex = "1"
walkdir = "2.4.0"
glob = "0.3.1"
[workspace]
members = ["bart"]
[features]
default = ["server"]
spin = ["dep:spin-sdk"]
server = ["spin", "dep:handlebars_sprig"]