Create a web server to begin the Visions VTT application #110

Merged
savanni merged 4 commits from visions into main 2023-12-04 02:42:05 +00:00
4 changed files with 20 additions and 0 deletions
Showing only changes of commit bf93625225 - Show all commits

7
Cargo.lock generated
View File

@ -4541,6 +4541,13 @@ version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "visions"
version = "0.1.0"
dependencies = [
"warp",
]
[[package]]
name = "void"
version = "1.0.2"

View File

@ -24,4 +24,5 @@ members = [
"screenplay",
"sgf",
"tree",
"visions/server",
]

View File

@ -0,0 +1,9 @@
[package]
name = "visions"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
warp = "0.3.6"

View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}