https://github.com/delta/codecharacter-driver
Driver for CodeCharacter
https://github.com/delta/codecharacter-driver
Last synced: 5 months ago
JSON representation
Driver for CodeCharacter
- Host: GitHub
- URL: https://github.com/delta/codecharacter-driver
- Owner: delta
- Created: 2023-12-15T08:42:15.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-13T05:56:59.000Z (over 1 year ago)
- Last Synced: 2025-02-13T06:34:42.336Z (over 1 year ago)
- Language: Rust
- Homepage:
- Size: 1.22 MB
- Stars: 0
- Watchers: 28
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Requirements
1. Install [Rust](https://www.rust-lang.org/tools/install)
2. Switch to Rust Nightly
```
rustup install nightly && rustup default nightly
```
3. Install pre-commit hooks
```
pip install pre-commit
pre-commit install
```
## Setup
1. Clone the repository
```
git clone
```
2. Initialze submodules
```
git submodule update --init
```
3. Create config files
```
cp .cargo/config.example.toml .cargo/config.toml
```
4. Run
```
cargo run
```
## Build
1. Build
```
cargo build
```
2. Build for release
```
cargo build --release
```