Skip to content

Commit 9948946

Browse files
Merge branch 'main' into renovate/tucana-0.x
2 parents 92d3b7a + d6519d9 commit 9948946

File tree

17 files changed

+1318
-605
lines changed

17 files changed

+1318
-605
lines changed

.github/workflows/build-and-test.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Build & Test Draco
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
draco:
8+
runs-on: ubuntu-latest
9+
10+
defaults:
11+
run:
12+
shell: bash
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
- name: Setup rust
17+
run: rustup update --no-self-update stable
18+
- name: Build crate
19+
run: PATH=${{ runner.temp }}/proto/bin:$PATH cargo build
20+
env:
21+
RUST_BACKTRACE: 'full'
22+
- name: Run Tests
23+
run: PATH=${{ runner.temp }}/proto/bin:$PATH cargo test
24+
env:
25+
RUST_BACKTRACE: 'full'

Cargo.lock

Lines changed: 15 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
members = ["draco_rest", "draco_base", "draco_validator"]
33

44
[workspace.dependencies]
5-
code0-flow = { version = "0.0.4", features = ["all"] }
5+
code0-flow = { version = "0.0.7", features = ["all"] }
66
tucana = { version = "0.0.19", features = ["all"] }
77
serde_json = { version = "1.0.138" }
88
serde = "1.0.219"

draco_rest/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,5 @@ serde_json = { workspace = true }
1919
serde = { workspace = true }
2020
log = { workspace = true }
2121
env_logger = { workspace = true }
22+
uuid = { version = "1.16.0", features = ["v4"] }
23+
regex = "1.11.1"

draco_rest/src/http.rs

Lines changed: 0 additions & 47 deletions
This file was deleted.

draco_rest/src/http/mod.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
pub mod request;
2+
pub mod response;
3+
pub mod server;

0 commit comments

Comments
 (0)