mirror of
https://github.com/sergi0g/cup.git
synced 2025-11-08 13:13:49 -05:00
chore: init projects
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
target/
|
||||
73
Cargo.lock
generated
Normal file
73
Cargo.lock
generated
Normal file
@@ -0,0 +1,73 @@
|
||||
# This file is automatically @generated by Cargo.
|
||||
# It is not intended for manual editing.
|
||||
version = 4
|
||||
|
||||
[[package]]
|
||||
name = "cup"
|
||||
version = "4.0.0"
|
||||
dependencies = [
|
||||
"thiserror",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "cup_cli"
|
||||
version = "4.0.0"
|
||||
|
||||
[[package]]
|
||||
name = "cup_server"
|
||||
version = "4.0.0"
|
||||
|
||||
[[package]]
|
||||
name = "proc-macro2"
|
||||
version = "1.0.95"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
||||
dependencies = [
|
||||
"unicode-ident",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "quote"
|
||||
version = "1.0.40"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "syn"
|
||||
version = "2.0.104"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"unicode-ident",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "thiserror"
|
||||
version = "2.0.12"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
||||
dependencies = [
|
||||
"thiserror-impl",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "thiserror-impl"
|
||||
version = "2.0.12"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"syn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "unicode-ident"
|
||||
version = "1.0.18"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
||||
3
Cargo.toml
Normal file
3
Cargo.toml
Normal file
@@ -0,0 +1,3 @@
|
||||
[workspace]
|
||||
members = ["cup", "cup_cli", "cup_server"]
|
||||
resolver = "3"
|
||||
9
cup/Cargo.toml
Normal file
9
cup/Cargo.toml
Normal file
@@ -0,0 +1,9 @@
|
||||
[package]
|
||||
name = "cup"
|
||||
version = "4.0.0"
|
||||
edition = "2024"
|
||||
|
||||
[lib]
|
||||
|
||||
[dependencies]
|
||||
thiserror = "2"
|
||||
1
cup/src/lib.rs
Normal file
1
cup/src/lib.rs
Normal file
@@ -0,0 +1 @@
|
||||
pub mod version;
|
||||
0
cup/src/version/date.rs
Normal file
0
cup/src/version/date.rs
Normal file
0
cup/src/version/extended.rs
Normal file
0
cup/src/version/extended.rs
Normal file
3
cup/src/version/mod.rs
Normal file
3
cup/src/version/mod.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
pub mod date;
|
||||
pub mod extended;
|
||||
pub mod standard;
|
||||
0
cup/src/version/standard.rs
Normal file
0
cup/src/version/standard.rs
Normal file
3
cup_cli/Cargo.toml
Normal file
3
cup_cli/Cargo.toml
Normal file
@@ -0,0 +1,3 @@
|
||||
[package]
|
||||
name = "cup_cli"
|
||||
version = "4.0.0"
|
||||
1
cup_cli/src/main.rs
Normal file
1
cup_cli/src/main.rs
Normal file
@@ -0,0 +1 @@
|
||||
fn main() {}
|
||||
3
cup_server/Cargo.toml
Normal file
3
cup_server/Cargo.toml
Normal file
@@ -0,0 +1,3 @@
|
||||
[package]
|
||||
name = "cup_server"
|
||||
version = "4.0.0"
|
||||
3
cup_server/src/main.rs
Normal file
3
cup_server/src/main.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user