2023-07-01 04:43:18 +00:00
|
|
|
[workspace]
|
|
|
|
members = ["cli", "shared"]
|
|
|
|
|
2023-06-28 20:32:25 +00:00
|
|
|
[package]
|
|
|
|
name = "meowy-webring"
|
2023-07-10 06:31:53 +00:00
|
|
|
version = "0.2.0"
|
2023-06-28 20:32:25 +00:00
|
|
|
edition = "2021"
|
2023-07-03 08:29:03 +00:00
|
|
|
rust-version = "1.70"
|
2023-06-28 20:32:25 +00:00
|
|
|
|
2023-07-05 09:10:31 +00:00
|
|
|
[profile.dev]
|
2023-07-08 06:03:29 +00:00
|
|
|
lto = false
|
2023-07-05 09:10:31 +00:00
|
|
|
[profile.release]
|
|
|
|
lto = "thin"
|
|
|
|
|
2023-06-28 20:32:25 +00:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2023-07-02 02:49:48 +00:00
|
|
|
[dependencies]
|
|
|
|
log = "0.4"
|
|
|
|
|
2023-06-30 02:45:41 +00:00
|
|
|
[dependencies.rocket]
|
|
|
|
version = "=0.5.0-rc.3"
|
2023-06-30 05:34:15 +00:00
|
|
|
default_features = false
|
2023-06-30 02:45:41 +00:00
|
|
|
features = ["json"]
|
|
|
|
|
|
|
|
[dependencies.rust-embed]
|
2023-07-01 04:43:18 +00:00
|
|
|
version = "6"
|
2023-06-30 02:45:41 +00:00
|
|
|
features = ["debug-embed"]
|
2023-06-30 04:24:53 +00:00
|
|
|
|
2023-07-01 04:43:18 +00:00
|
|
|
[dependencies.serde]
|
|
|
|
version = "1.0"
|
|
|
|
|
2023-06-30 10:47:46 +00:00
|
|
|
[dependencies.serde_json]
|
|
|
|
version = "1.0"
|
|
|
|
|
2023-06-30 04:24:53 +00:00
|
|
|
[dependencies.askama_rocket]
|
|
|
|
git = "https://github.com/djc/askama.git"
|
|
|
|
package = "askama_rocket"
|
|
|
|
rev = "b9e51601560398766eac445517fb17c35090a952"
|
2023-07-01 06:12:55 +00:00
|
|
|
default-features = false
|
2023-06-30 04:24:53 +00:00
|
|
|
|
|
|
|
[dependencies.askama]
|
|
|
|
git = "https://github.com/djc/askama.git"
|
|
|
|
package = "askama"
|
|
|
|
rev = "b9e51601560398766eac445517fb17c35090a952"
|
|
|
|
version = "0.12"
|
2023-07-01 06:12:55 +00:00
|
|
|
default-features = false
|
2023-07-01 04:43:18 +00:00
|
|
|
|
|
|
|
[dependencies.shared]
|
|
|
|
path = "./shared"
|
2023-07-02 02:49:48 +00:00
|
|
|
|
|
|
|
[dependencies.simple_logger]
|
|
|
|
version = "4"
|
|
|
|
default-features = false
|
2023-07-03 08:29:03 +00:00
|
|
|
|
|
|
|
[dependencies.notify]
|
|
|
|
version = "6"
|
|
|
|
default-features = false
|
2023-07-04 05:14:10 +00:00
|
|
|
features = ["macos_fsevent"]
|
2023-07-05 09:10:31 +00:00
|
|
|
|
|
|
|
[dependencies.rocket_cors]
|
|
|
|
version = "=0.6.0-alpha2"
|
|
|
|
default_features = false
|