-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (32 loc) · 961 Bytes
/
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
[package]
name = "ultime"
version = "0.0.5"
description = "The ultimate full-stack experience"
authors = ["David Bottiau"]
repository = "https://github.com/Odonno/ultime/"
readme = "readme.md"
license = "MIT"
keywords = ["ultime", "surrealdb", "leptos", "cli"]
categories = ["command-line-utilities"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.71"
chrono = "0.4.24"
clap = { version = "4.3.0", features = ["derive"] }
convert_case = "0.6.0"
fs_extra = "1.3.0"
include_dir = "0.7.3"
itertools = "0.11.0"
minijinja = "0.34.0"
notify = "6.0.0"
open = "4.1.0"
regex = "1.8.2"
serde = { version = "1.0.163", features = ["derive"] }
surrealdb = { version = "1.0.0-beta.9" }
surrealdb-migrations = { version = "0.9.11" }
tokio = { version = "1.28.1", features = ["macros"] }
[dev-dependencies]
assert_cmd = "2.0.11"
assert_fs = "1.0.13"
pretty_assertions = "1.3.0"