-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
88 lines (84 loc) · 2.1 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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[package]
name = "torchbear"
description = "A simple and complete programming environment"
version = "1.0.0"
authors = ["Mitchell Tannenbaum <[email protected]>"]
repository = "https://github.com/foundpatterns/torchbear"
readme = "Readme.md"
keywords = ["actix", "lua", "cryptography", "web", "framework"]
license = "MIT/Apache-2.0"
categories = ["network-programming", "asynchronous",
"web-programming::http-server",
"web-programming::http-client"]
edition = "2018"
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
[lib]
name = "torchbear_lib"
path = "src/lib.rs"
[[bin]]
name = "torchbear"
path = "src/main.rs"
[dependencies]
# base
actix = "0.7"
actix-lua = { git = "https://github.com/foundpatterns/actix-lua" }
futures = "0.1"
rlua = { git = "https://github.com/kyren/rlua", rev = "78c2aac5bda746c9046f701a6d8631ad53841baa" }
rlua_serde = { git = "https://github.com/foundpatterns/rlua_serde" }
# system
dirs = "1.0"
libm = "0.1"
globwalk = "0.6"
backtrace = "0.3"
# web
#actix-web = { git = "https://github.com/actix/actix-web", tag = "web-v1.0.0-rc", features = ["ssl"] }
actix-web = { version = "0.7", features = ["ssl"] }
# cli and log
env_logger = "0.6"
clap = "2.32"
log = "0.4"
fern = { version = "0.5", features = ["colored"] }
colored = "1.6"
# text
serde = "1.0"
serde_yaml = "0.8"
serde_urlencoded = "0.5"
comrak = "0.4"
serde_json = "1.0"
serde_derive = "1.0"
diff-rs = "0.2"
patch-rs = "0.6"
splitdiff-rs = "0.4"
combinediff-rs = "0.1"
interdiff-rs = "0.2"
select = "0.4"
scl = { git = "https://github.com/foundpatterns/scl" }
# string
ulid = "0.3"
uuid = "0.7"
regex = "1.1"
mime_guess = "1.8"
nanoid = "0.2"
heck = "0.3"
# app
tera = { git = "https://github.com/foundpatterns/tera" }
handlebars = "1.1"
tantivy = { version = "0.8", optional = true }
chrono = "0.4"
base64 = "0.10"
git2 = "0.8"
# crypto
sodiumoxide = "0.2"
blake2 = "0.8"
openssl = { version = "0.10", features = ["vendored"] }
openssl-probe = "0.1.2"
checksumdir = "0.3.0"
# archive
zip = "0.5"
tar = "0.4"
xz2 = "0.1"
[dev-dependencies]
tempfile = "3"
[features]
default = []
tantivy_bindings = []