mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-25 12:52:47 -07:00
9cd90ba62a
* refactor: move catch_all in tuono_lib * refactor: moved server to tuono_lib * refactor: move router and server into tuono_lib * refactor: reduce exports from examples * refactor: re-organize exports * refactor: removed mode set on project builder * feat: update version to v0.3.1
15 lines
280 B
TOML
15 lines
280 B
TOML
[package]
|
|
name = "tuono"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "tuono"
|
|
path = ".tuono/main.rs"
|
|
|
|
[dependencies]
|
|
tuono_lib = { path = "../../crates/tuono_lib/"}
|
|
serde = { version = "1.0.202", features = ["derive"] }
|
|
reqwest = {version = "0.12.4", features = ["json"]}
|
|
|